Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #define _CRT_SECURE_NO_DEPRECATE
- #include <iostream>
- #include <vector>
- #include <string>
- #include <map>
- #include <set>
- #include <algorithm>
- using namespace std;
- int main() {
- int n;
- scanf("%d", &n);
- for (int i = 0; i < n; i++) {
- printf("%d ", i + 1);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment