Ответ:
1 2 3 4 5 6 7 8 9, a=int(input() ) b=int(input()) c=int(input()) if a>b>c: print(c) elif a<b<c: print(a) else: print(b)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
1 2 3 4 5 6 7 8 9, a=int(input() ) b=int(input()) c=int(input()) if a>b>c: print(c) elif a<b<c: print(a) else: print(b)