Run ID:110819
提交时间:2025-02-23 13:58:07
#include<iostream> #include<cstdio> //scanf()\printf() #include<cstring> #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int a,b; cin>>a>>b; cout<<a<<" "<<b<<'\n'<<a+b; return 0; }