← Back to List

1252번: 이진수 덧셈 ↗

Solutions

Python 3
77 B | 77 chars
a,b =input().split(" ")

a=int(a,2)
b=int(b,2)

c=a+b

d=bin(c)

print(d[2:])