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

7 lines
131 B
Python

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