prac_001.cpp (391B)
1 /* 2 * Author: Amit Dutta (amitdutta4255@gmail.com) | Date: 18 Jun 2026 3 * Repo: https://github.com/notamitgamer/bsc 4 * License: MIT 5 */ 6 7 /* Trying to remember after a year. */ 8 9 #include <iostream> 10 using namespace std; 11 12 int main() { 13 int n; 14 cout << "Enter a number: "; 15 cin >> n; 16 17 for (int i = 1; i <= n; i++) { 18 cout << i << " "; 19 } 20 cout << endl; 21 22 return 0; 23 }