Advertisement
HristoBaychev

Greater Number

Jan 28th, 2023
408
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. numberOne = int(input())
  2. numberTwo = int(input())
  3.  
  4. if numberOne > numberTwo:
  5.     print(numberOne)
  6. else:
  7.     print(numberTwo)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement