Hashmat the brave warrior

 avatar
user_6817964
c_cpp
2 years ago
177 B
5
Indexable
#include <iostream>
#include <cmath>

using namespace std;




main(){
    long long int a, b;
    while(cin >> a >> b){
        cout << abs(a-b) << endl;
    }

}
Editor is loading...