summaryrefslogtreecommitdiff
path: root/tests/sources/0325_if_bool.c
blob: 614d5d7092b24445eed5030a04f0f246ff6deb54 (plain) (blame)
1
2
3
4
int x = rand(10,20);
int y = rand(10,20);
if (x<=15 && y>=15 || x>=15 && y<=15) { print(x,y); }
else { print(x,y); }