10 lines
196 B
C
10 lines
196 B
C
#include <stdio.h>
|
|
#include <math.h>
|
|
#define putbool(x) (printf("%s", (x) ? "TRUE" : "FALSE"))
|
|
|
|
int main() {
|
|
int a, b;
|
|
scanf("%d %d", &a, &b);
|
|
putbool(abs(a - b) == 1);
|
|
return 0;
|
|
} |