OK, so i didn't get what the tutorial of that really meant, and that tutorial looked long..-_-
Fortunately, I found a better solution. And my solution is mainly like 2 lines!!! :p I think it's better if you see the code rather than me trying to explain it.....
include<bits/stdc++.h>
using namespace std;
int main(){ int n, i; cin>>n; for(i=0;i<n;i++)cout<<i+n*10<<" "; return 0; }
For any question or suggestion, feel free!!!
Auto comment: topic has been updated by always_4ever_5_25__21_SS (previous revision, new revision, compare).
To be very simple You just have to print N Prime Numbers less than 10^7 .
What if n=10^5? there's isn't 10^5 prime numbers within 10^7....
18073266
Here you go, test case 5.
Do you seriously concatenate every line and believe that you have written only one line of code? :-/
And that's My idea for It...