Lucian_Adrian

#348 AfisarePuteri

Sep 13th, 2021
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3. int main ()
  4. {
  5. int n, m;
  6. cin >> n >> m;
  7. int i=1;
  8. cout << i << ' ';
  9. if ( n==1 )
  10. {}
  11. else
  12. while (i*n<=m)
  13. {
  14. i*=n;
  15. cout << i << ' ';
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment