fork download
  1. #include <iostream>
  2. using namespace std;
  3. int main() {
  4. int a,b,c,d,e,f;
  5. cin >> a,b,c,d,f,e;
  6. e=a-c;
  7. f=b-d;
  8. cout<<e<<f;
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 15232KB
stdin
5 9 5 5
stdout
50