Відповідь:
a=int(input('a='))
b=int(input('b='))
c=int(input('c='))
if a<b and a<c:
print('a наименьшее')
elif b<a and b<c:
print('b наименьшее')
elif c<a and c<b:
print('c наименьшее')
Пояснення:
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Verified answer
Відповідь:
a=int(input('a='))
b=int(input('b='))
c=int(input('c='))
if a<b and a<c:
print('a наименьшее')
elif b<a and b<c:
print('b наименьшее')
elif c<a and c<b:
print('c наименьшее')
Пояснення: