a, b, c = map(int, input('ввод через пробел: ').split())
print(*sorted([a, b, c]))
Объяснение:
a = [float(input()) for i in range(3)]
print(sorted(a))
a, b, c = map(int, input('ввод через пробел: ').split())
print(*sorted([a, b, c]))
Объяснение:
a = [float(input()) for i in range(3)]
print(sorted(a))