A+B Problem

code

#include<iostream>
using namespace std;
int main(){
	ios::sync_with_stdio(false);
	int a,b;
	cin>>a>>b;
	cout<<a+b;
	return 0;
}
posted @ 2022-01-31 09:37  ethon-wang  阅读(23)  评论(0编辑  收藏  举报