Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main()
- {
- int n, m;
- cin >> n >> m;
- for(int i=0; i<n; i++)
- cout << i+1 << " ";
- cout << endl;
- for(int i=1; i<=m; i++)
- cout << i*10000 << " ";
- cout << endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment