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

7 lines
131 B
Python
Raw Normal View History

2023-05-21 17:54:10 +03:00
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)