Nathan Coulas

List Minimum (Easy)

bf1easy CPP17 14 Mar, 2020 0.945s 3 points

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;
  }