practivceAlgorithm/백준
[백준][Python] 2729 이진수 덧셈
findTheValue
2021. 10. 19. 04:18
파이썬의 int, bin 메서드를 사용해 풀이
import sys
input = sys.stdin.readline
for test in range(int(input())):
a, b = map(lambda x: int(x, 2), input().split())
print(bin(a + b)[2:])