pgrm_002.cpp (318B)
1 /* 2 * Author: Amit Dutta (amitdutta4255@gmail.com) | Date: 29 Jun 2026 3 * Repo: https://github.com/notamitgamer/bsc 4 * License: MIT 5 */ 6 7 /* Taking input */ 8 9 #include<iostream> 10 using namespace std; 11 int main() { 12 int n; 13 cout << "Enter the number: "; 14 cin >> n; 15 cout << "You entered: " << n; 16 return 0; 17 }