8 lines
166 B
Text
8 lines
166 B
Text
i = random 1 10
|
|
if i mod 2 = 0
|
|
print i & " is divisible by 2"
|
|
elif i mod 3 = 0
|
|
print i & " is divisible by 3"
|
|
else
|
|
print i & " is not divisible by 2 or 3"
|
|
.
|