int x = 1, y = 0; if (x = 0) { y = 1; } else { y = 2; }
if ((2<=num) && (num<=5)) { cout << "Yes" << endl; }
if ((2<=num) || (num<=5)) { cout << "Yes" << endl; }
if (2 <= num <= 5) { cout << "Yes" << endl; }
if ((2<=num) and (num<=5)) { cout << "Yes" << endl; }
int a = 1, b = 2, c = 3, d = 0; if ((b>c) && (c/d >0)) { cout << "Crash?" << endl; }
int a = 1, b = 2, c = 3, d = 0; if ((b<c) && (c/d >0)) { cout << "Crash?" << endl; }
int a = 1, b = 2, c = 3, d = 0; if ((a+3<c) || (c/d >0)) { cout << "Crash?" << endl; }
int a = 1, b = 2, c = 3, d = 0; if ((c/d>0) && (a+3<c)) { cout << "Crash?" << endl; }
int x = 0, y = 0; x = 3; y = 1; if (x < 5) if (x > 3) y = 2; else y = 3;
switch (x) { case y: z=1; break; default: z=2; }
case 1: case 2: case 3: z = 1; break;
int x=1, y=2; x = (x<y) ? y*2 : y*3;
y=0; do { y++; x++; } while (x<10);
for (x=0, y=0; x<10; x++) { y++; }
for (y=0; x<10; x++) { y++; x++; }
y=0; y++; x++; while (x<10) { y++; x++; }
y=0; while (x<10) { y++; x++; }
x=0; while ((x!=1) || (x!=2)) { cin >> x; }
x=0; while ((x!=1) && (x!=2)) { cin >> x; }
x=0; while ((x==1) && (x==2)) { cin >> x; }
x=1; while ((x==1) || (x==2)) { cin >> x; }
int counter, sum; for (counter=1, sum=0; counter <= 20;) { if ((counter % 2)==0) continue; sum += counter; counter++; }
int counter, sum; for (counter=0, sum=0; counter <= 20;) { counter++; if ((counter % 2)==0) continue; sum += counter; }
int counter, sum; for (counter=0, sum=0; counter <= 20;) { counter++; if ((counter % 2)==0) break; sum += counter; }
int counter, sum; for (counter=1, sum=0; counter <= 20;) { if ((counter % 2)==0) break; sum += counter; counter++; }
int i,j; for (i=0; i<4; i++) { for (j=0; j<4; j++) { cout << '*'; } cout << endl; }
int i,j; for (i=0; i<4; i++) { for (j=0; j<=i; j++) { cout << '*'; } cout << endl; }
int i,j; for (i=0; i<4; i++) { for (j=0; j<i; j++) { cout << '*'; } cout << endl; }
int i,j; for (i=0; i<=4; i++) { for (j=0; j<=4; j++) { cout << '*'; } cout << endl; }