https://www.acmicpc.net/problem/2420
#include <iostream> using namespace std; int main() { long long a,b; cin >> a>>b; cout << abs(a-b); }