11 lines
184 B
C
11 lines
184 B
C
|
#include <stdint.h>
|
||
|
#include <stdio.h>
|
||
|
|
||
|
#define MIN(x,y) x>y ? 1 : 0
|
||
|
|
||
|
int main(int argc, char **argv) {
|
||
|
int a, b;
|
||
|
scanf("%d %d", &a, &b);
|
||
|
printf("%d\n", MIN(a, b));
|
||
|
return 0;
|
||
|
}
|