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 To Check student is Pass or Fail In Exam

Building a Face Recognition Attendance System with Python