language: AWK (mawk) (mawk-1.3.3)
date: 810 days 0 hours ago
link:
visibility: public
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#include <iostream>
#include <cstdlib>
#include <algorithm>
#include<stdio.h>
 
using namespace std ;
 
int main(int argc, char *argv[])
{   for(;;)
    {
    //long  //tint64//
         __int64   a,b,c;
 
    while(scanf("%d %d",&a,&b)!=EOF)
    {
        if(a > b)
            swap(a, b) ;
 
      //  cout << (b-a) << endl ;
                c=b-a;
                printf("%lld",c);
    }
 
    return(0) ;
    }
}