入门训练 BEGIN-1 A+B问题

#include <iostream>
using namespace std;

int main() {
	
	int a,b;
	cin>>a>>b;
	cout<<a+b;
	
	return 0;
}
posted @ 2020-01-06 22:00  ZC_Wang  阅读(106)  评论(0编辑  收藏  举报