dkyoseff

Conditional Statements - Lab / 02. Greater Number

Jul 5th, 2022 (edited)
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.10 KB | None | 0 0
  1. num1 = int(input())
  2. num2 = int(input())
  3. if num1 > num2:
  4.     print(num1)
  5. else:
  6.     print(num2)
Add Comment
Please, Sign In to add comment