← Back to List

2745번: 진법 변환 ↗

Solutions

Python 3
51 B | 51 chars
a,b=input().split(" ")
b=int(b)
a=int(a,b)
print(a)