summaryrefslogtreecommitdiff
path: root/tests/sources/0322_if_and.c
blob: cd1020307686dcd5b1e797c3506b2027dfd040f1 (plain) (blame)
1
2
3
4
int x = rand(10,20);
int y = rand(30,40);
if (x>=15 && y>=35) { print(x,y); }
else { print(x,y); }