Write Python Programme To Take Two Numbers Input From User And Find Remainder Between Them?

 Write Python Programme To Take Two Numbers Input From User And Find Remainder Between Number1 and Number2?  


Code:

num1 = int(input("Enter The Number 1 :"))
num2 = int(input("Enter The Number 2 :"))
print("The remainder when Number1 is divided by Number2 is : ",num1%num2)

Output:






Download Source Code



Comments

Popular posts from this blog

Write A Python Program, Create n Empty Dictionary Allow 4 Friends To, Enter Their Favorite Programming Language As values and User Keys as their Name Assume That The Names Are Unique.

Write A Python Program To Check student is Pass or Fail In Exam