Advertisement
Ausdauer

P37500 Primers nombres

Jun 29th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.16 KB | None | 0 0
  1. //P37500 Primers nombres
  2. #include <iostream>
  3. using namespace std;
  4.  
  5. int main() {
  6.     int n;
  7.     cin >> n;
  8.     for(int i = 0 ; i <= n ; ++i) {
  9.         cout << i << endl;
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement