Created
January 26, 2021 02:43
-
-
Save Michaelgathara/63daca1e6a3227d34a54af39bd8d78da to your computer and use it in GitHub Desktop.
Find remainder from user input
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
num1 = int(input("Enter your Dividend number: ")) | |
num2 = int(input("Enter you Divisor number: ")) | |
num3 = 0 | |
def findRemainder(first, second): | |
return first%second | |
print(findRemainder(num1, num2)) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment