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

6 lines
78 B
Python

a = int(input('a:'))
b = int(input('b:'))
max = a if a > b else b
print(max)