Язык программирования Python
A = int(input())
B = int(input())
if A > B:
B = 2 * A
else:
A = B * B
print(str(A))
print(str(B))
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Язык программирования Python
A = int(input())
B = int(input())
if A > B:
B = 2 * A
else:
A = B * B
print(str(A))
print(str(B))