Program To Find The remainder

 a  = int(input("Enter 1st Num: "))

b  = int(input("Enter 2nd Num: "))
div = a%b
print(div)