MapleStory Finger Point Cute Line Smiley Blinking Hello Kitty Angel 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;
}