#include<stdio.h>int main(void){ int x=1,y=2,z=2; if(x) z += 1; if(!y) z += 2; if(z) z += 3; printf("%d\n", z); return 0;}