← Back to List

33169번: 所持金 (Money On Me) ↗

Solutions

Python 3
62 B | 62 chars
a = int(input())
b = int(input())

print(a * 1000 + b * 10000)