#include #include int main(void) { long long a, b; while (scanf("%lld%lld", &a, &b) == 2) printf("%lld\n", llabs(a-b)); return 0; }