사생활 보호 설정
https://gamjia.tistory.com
Updated News
Mini Rooms
답글수 [0]
What Friends Say
한마디로 표현해봐~
1촌평 관리
15552번 빠른 A+B
GamJia 2023. 3. 22. 09:08
단계별로 풀어보기 - 반복문 - 6단계
https://www.acmicpc.net/problem/15552
#include <iostream> using namespace std; int main() { cin.tie(NULL); // cin에서 cout 풀기 ios::sync_with_stdio(false); // C++ 단독 버퍼 int A,B,T; cin>>T; for(int i=0;i<T;i++) { cin>>A>>B; cout<<A+B<<"\n"; } return 0; }