#include typedef long long int NI64; int main() { NI64 res = 0; printf("Test for comparing a INT64 values: "); if (res < -2147483648LL) { printf("Error: 0 < -2147483648\n"); return 1; } else if (2147483647LL < res) { printf("Error: 2147483647 < 0\n"); return 2; } else { printf("OK\n"); return 0; } }