sairate-patch-1
master
@ -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;
}