«Минимум из трех чисел» на pythontutor.ru Даны три целых числа. Выведите значение наименьшего из них.
По дате
По рейтингу
a,b,c=map(int, input('3 числа через пробел:').split())
print(min(a,b,c))
a = int(input())
b = int(input())
c = int(input())
if a <= b and a <= c:
print(a)
elif b <= c and b <= a:
print(b)
else:
print(c)