← Back to List

22193번: Multiply ↗

Solutions

Python 3
49 B | 49 chars
input()
a=int(input())
b=int(input())
print(a*b)