Computer Science, asked by anshu30204, 7 months ago

write the python program to find the remainder of any two integer entered by user​

Answers

Answered by sanjiththesupernigha
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 SankhadeepDas2
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