List Minimum (Easy)
Source Code
#include <iostream>
#include <math.h>
#include <bits/stdc++.h>
using namespace std;
int main(){
ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);
int n, i;
scanf ("%d",&n);
for(i = 1; i <= n; i++){
printf("%d ", i);
}
return 0;
}