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