diff --git a/Yet Another Two Integers Problem b/Yet Another Two Integers Problem new file mode 100644 index 0000000..295781d --- /dev/null +++ b/Yet Another Two Integers Problem @@ -0,0 +1,12 @@ +#include +using namespace std; +int main(){ + int n;cin>>n; + while(n--){ + long long int a,b; + cin>>a>>b; + long long int y = abs(a-b); + if(y%10==0){cout<<(y/10)<