a = int(input())
b = int(input())
if a > b:
a *= 2
print(a)
elif a < b:
b *= 2
print(b)
else:
print("a = b")
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
a = int(input())
b = int(input())
if a > b:
a *= 2
print(a)
elif a < b:
b *= 2
print(b)
else:
print("a = b")