john
first commit
c4b0eef
raw
history blame contribute delete
173 Bytes
#include <bits/stdc++.h>
using namespace std;
int main(){
long long a, b;
while(scanf("%lld %lld", &a, &b) == 2)
printf("%lld\n", abs(b - a));
return(0);
}