int main() { int a = 10; int b = 20; int c = 0; if (a < b) { c = 100; } else { c = 200; } return c; }