PY
py
1
2
3
4
5
6
7
8
9
10
# YOUR CODE HERE
print("hello BB")
intNum = int(input("Enter n ( >0 and muliple of 5 ): "))
if intNum%5!=0 or intNum <= 0:
print("Wrong input")
else:
x=5
while intNum>=10:
intNum=intNum-x
print(intNum)
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run