Задача №8
Дано натуральное число. Определить, будет ли это число: нечётным, кратным 5.
import random
a = random.randint(0,999)
print(a)
if a % 2 == 0:
print(«the number is even»)
else:
print(«the number is odd»)
if a % 5 == 0:
print(«the number multiple of 5»)
else:
print(«the number is not a multiple of 5»)