#include<bits/stdc++.h> using namespace std; int main() { int A,a,b,c,d,e; cin>>a>>b; if(a>=b) { cout<<0; } else { A=b-a; d=A/10; c=A%10; if(c>0) { d=d+1; } cout<<d; } return 0; }
Using your lizikid universal account