Compare commits

...

2 Commits

1 changed files with 8 additions and 0 deletions

8
年龄问题.cpp Normal file
View File

@ -0,0 +1,8 @@
#include<iostream>
using namespace std;
int main(){
int a,b,c;
cin>>a>>b>>c;
cout<<a-b<<" "<<a+c;
return 0;
}