На Python: "Написать программу нахождения суммы большего и меньшего из трех чисел. "
Answers & Comments
nastyacap04
a = int(input())b = int(input())c = int(input())if a>b and a>c: d = a if b>c: e = c else: e = bif b>a and b>c: d = b if a>c: e = c else: e = aif c>a and c>b: d = c if b>a: e = a else: e = bprint(d + e , d - e)
1 votes Thanks 3
Alpixx
a, b, c = map(int, list(input().split()))print(max(a, b, c) + min(a, b, c))
2 votes Thanks 1
nastkess
здравствуйте, У меня будет олимпиада 8 мая в 7:00 до 10:00,вы сможете мне помочь пожалуйста?
Answers & Comments