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