#include<stdio.h> int main() { int a = 2, b = -1, c = 2; if(a < b) { if(b < 0) { c = 0; } else { c++; } } printf("c=%d\n", c); return 0; }