감자튀김 공장🍟

[백준/15552] 빠른 A+B (with 파이썬) 본문

Algorithm/BOJ

[백준/15552] 빠른 A+B (with 파이썬)

Potato potage 2022. 10. 2. 14:49
반응형

✔ 문제


풀이

import sys

T = int(input())

for _ in range(T):
    a, b = map(int, sys.stdin.readline().split())
    print(a+b)

후기

sys.stdin.readline().split()을 자동완성 도움 없이 썼더니 stdin() 이러고 있었다...

반응형
Comments