1 2 3 4 5 6 7 8 9
#include <stdio.h> int main(void){ unsigned a, b; a = 3; b = 5; printf("%d\n", !!(((int)a - (int)b) > 0)); return 0; }