Hashmat the brave warrior

user_6817964 avatar
user_6817964
c_cpp
03/08/2023 1:26 PM
236 B
11
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...