풀스택 개발자 2020. 10. 1. 21:31
#include<iostream>
using namespace std;
int main(void)
{
	int A = 0;
	int B = 0;
	cin >> A;
	cin >> B;
	cout << A + B;
}