Advertisement
rootUser

UVA 10055

Jul 10th, 2016
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.21 KB | None | 0 0
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main(void)
  5. {
  6.     long long h,o;
  7.     while((cin>>h>>o))
  8.     {
  9.         long long d = labs(h-o);
  10.         cout<<d<<endl;
  11.     }
  12.     return 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement