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