c = int(input())
N = int(input())
M = int(input())
if c == N+M:
print(N+M)
else:
print(N*M)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
c = int(input())
N = int(input())
M = int(input())
if c == N+M:
print(N+M)
else:
print(N*M)