MapleStory Finger Point

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

[1000/Cpp] A+B

HYEJU01 2021. 9. 2. 00:05
 #include<iostream>
 using namespace std;
 int main(){

     int a,b;
     cin >> a >> b;
     cout << a+b;

 return 0; 
 }