Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #1. прочитаме две цели числа
- #2. проверка -> 1. първо > второ 2. първо <= второ
- first_number = int(input())
- second_number = int(input())
- if first_number > second_number:
- print(first_number)
- else: #first_number <= second_number
- print(second_number)
Add Comment
Please, Sign In to add comment