python-CSD-kursu/python-temel/kosul.operatoru.2.py

6 lines
78 B
Python
Raw Normal View History

2023-05-21 17:30:36 +03:00
a = int(input('a:'))
b = int(input('b:'))
max = a if a > b else b
print(max)