mirror of
https://github.com/Kiritow/OJ-Problems-Source.git
synced 2024-03-22 13:11:29 +08:00
14 lines
252 B
C
14 lines
252 B
C
|
/*
|
|||
|
<EFBFBD><EFBFBD><EFBFBD><EFBFBD>:ǧ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
<EFBFBD><EFBFBD>Ŀ:p1203 <EFBFBD>жϸ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƿ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
*/
|
|||
|
#include <stdio.h>
|
|||
|
|
|||
|
int main(int argc, char* argv[]) {
|
|||
|
double a, b;
|
|||
|
scanf("%lf%lf", &a, &b);
|
|||
|
double s = a > b ? a - b : b - a;
|
|||
|
printf("%s", s <= 0.00001 ? "yes" : "no");
|
|||
|
return 0;
|
|||
|
}
|