Saturday, June 13, 2015

UVa 10055 - Hashmat the Brave Warrior

// UVa 10055 - Hashmat the Brave Warrior
#include <iostream>
using namespace std;

int main() {
	unsigned long long a, b;
	while (cin >> a >> b) {
		cout << (a > b ? a - b : b - a) << endl;
	}
	return 0;
}

No comments:

Post a Comment