summaryrefslogtreecommitdiff
path: root/tests/sources/0324_if_not.c
blob: 8a6abb79957edabeacf257357748d6cab3c90d4b (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); }