PYTHON
a = int(input())
b = int(input())
c = int(input())
if a >= b and a >= c:
print(a)
elif b >= a and b >= c:
print(b)
else:
print(c)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
PYTHON
a = int(input())
b = int(input())
c = int(input())
if a >= b and a >= c:
print(a)
elif b >= a and b >= c:
print(b)
else:
print(c)
a, b, c = map(float, input('введите три числа: ').split())
print(max(a, b, c))