PY
py
1
2
3
4
5
6
7
8
9
10
#Created by Kishan Krithi Prajeesh
#5.20.20
x = float(input(" "))
y=float(input())
x %= y
if x == 0:
print ("The number is divisible by the second number")
else:
print ("The number is not divisible by the second number")
print ("Run again to get another statement!!!")
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run