python-CSD-kursu/kosul.operatoru.3.py

6 lines
82 B
Python
Raw Normal View History

2023-05-21 14:30:36 +00:00
a = int(input('a:'))
b = int(input('b:'))
c = (a if a > b else b) + 100
print(c)