document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #include<iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. long long x, y;
  7. while( cin >> x >> y ){
  8. cout << abs( x-y ) << endl;
  9. }
  10. return 0;
  11. }
');