MapleStory Finger Point

๐Ÿƒ‍โ™‚๏ธBaekjoon/C++

[10952/Cpp] A+B - 5

HYEJU01 2021. 9. 7. 23:42
#include<iostream>
using namespace std;

int main(){
    int A,B;
   
    while (true) {
         cin >> A >> B;
         
        if(A == 0 && B == 0){
            break;
        }
        cout << A+B << endl;
    }
    
return 0;
}