#include<bits/stdc++.h>
using namespace std;
int main(){ long long int a,b; while(cin >> a >> b){ cout << abs(a - b) << endl; }}