fork download
  1. #include <bits/stdc++.h>
  2.  
  3. #define ll uint64_t
  4.  
  5. using namespace std;
  6.  
  7. ll x, m;
  8.  
  9. int main() {
  10. ios_base::sync_with_stdio(false);
  11. cin.tie(NULL);
  12. cin >> x >> m;
  13.  
  14. int dig = log10(x) + 1;
  15. ll low = pow(10, dig) + x;
  16.  
  17. cout << low << "\n";
  18.  
  19. return 0;
  20. }
Success #stdin #stdout 0s 5304KB
stdin
24 1000
stdout
124