cs/stuff/loops/num4.py
lw-everestlinux 7a1383f13c hi buddy
2022-12-13 11:38:55 -05:00

8 lines
128 B
Python

a = int(input("Enter a number: "))
b = a * 5
c = b % 2
if (c != 0):
print("Not divisible by 5")
else:
print("Divisible by 5")