#include using namespace std; int main() { int n; cout << "Enter the value of n : "; cin >> n; // using for loop for (int i = 1; i <= n; i++) { cout << "\n " << i; } // using while loop int i = 1; cout<