/* * Author: Amit Dutta (amitdutta4255@gmail.com) | Date: 29 Jun 2026 * Repo: https://github.com/notamitgamer/bsc * License: MIT */ /* Taking input */ #include using namespace std; int main() { int n; cout << "Enter the number: "; cin >> n; cout << "You entered: " << n; return 0; }