write the python program to find the remainder of any two integer entered by user
Answers
Answered by
7
Answer:
a=int(input("Enter the first number: "))
b=int(input("Enter the second number: "))
remainder=a%b
print("Remainder is:",remainder)
Explanation:
Answered by
6
a=int(input("Enter the first number: "))
b=int(input("Enter the second number: "))
remainder=a%b
print("Remainder is:",remainder)
IF MY ANSWER IS CORRECT PLZ MARK ME AS BRAINLIST.
Similar questions