test.c (93B)
1 #include <stdio.h> 2 3 int 4 main(void) 5 { 6 int x = 3; 7 if(x == 3) { 8 puts("si"); 9 } 10 return x; 11 }