fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. // your code goes here
  6. long long x,y;
  7. cin>>x>>y;
  8. if(x>y) cout<<0;
  9. else if(x==y) cout<<1;
  10. else
  11. {
  12. string s=to_string(x);
  13. string m=to_string(y);
  14. if(s.size()==m.size()) cout<<0;
  15. else
  16. {
  17. for(int i=m.size()-s.size();i<m.size();i++) cout<<i<<" ";
  18. }
  19. }
  20. return 0;
  21. }
Success #stdin #stdout 0.01s 5284KB
stdin
148 1789
stdout
1 2 3