Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- num1=int(input("What is your fist number?"))
- num2=int(input("What is your second number?"))
- if num1>num2:
- print(num1, "Is the largest number")
- elif num2>num1:
- print(num2, "Is the largest number")
- else:
- print("The numbers are the same")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement