Ответ:
Объяснение:
Python 3.10:
a = int(input())
b = int(input())
if a < b:
print(f"{a} {b}")
else:
print(f"{b} {a}")
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Verified answer
Ответ:
Объяснение:
Python 3.10:
a = int(input())
b = int(input())
if a < b:
print(f"{a} {b}")
else:
print(f"{b} {a}")