#include #include int main(void) { int x = get_int("What's x? "); int y = get_int("what's y? "); if (x < y) { printf("x is greater than y\n"); } }