최대 1 분 소요

1. 문제

[Bronze III] Can you add this? - 7891

문제 링크

성능 요약

메모리: 30840 KB, 시간: 76 ms

분류

사칙연산(arithmetic), 구현(implementation), 수학(math)

문제 설명

Given two integers, calculate and output their sum.

입력

The input contains several test cases. The first line contains and integer t (t ≤ 100) denoting the number of test cases. Then t tests follow, each of them consisiting of two space separated integers x and y (−109 ≤ x, y ≤ 109).

출력

For each test case output output the sum of the corresponding integers.

출처: 백준, https://https://www.acmicpc.net/

2. 해결방법 시간복잡도

  1. 단순 코딩 O(N)

3. 문제 해결 및 코드


  • 주석을 참고하면서 이해를 돕습니다.

4. 알고리즘 및 해설

  1. 반복문을 통해 t만큼 입력값을 받는다.
    • 반복문이 도는 동안 두 값을 더한 값을 출력한다.