AtCoder Python Library for yatabis

This documentation is automatically generated by online-judge-tools/verification-helper

View the Project on GitHub yatabis/atcoder-python-library

:heavy_check_mark: verify/sample/many_aplusb.test.py

Depends on

Code

# verification-helper: PROBLEM https://judge.yosupo.jp/problem/many_aplusb
from lib.sample.io import read


def main():
    t = int(read())
    for _ in range(t):
        a, b = map(int, read().split())
        print(a + b)


if __name__ == '__main__':
    main()
Back to top page