mirror of
https://github.com/federico-busato/Modern-CPP-Programming.git
synced 2025-04-20 00:19:03 +03:00
18 lines
201 B
C++
18 lines
201 B
C++
#include<bits/stdc++.h>
|
|
using namespace std;
|
|
|
|
int main(){
|
|
// 1. input ans output
|
|
int n;
|
|
|
|
cout<<"Enter a number : ";
|
|
cin>>n;
|
|
cout<<"\n Entered number is ---> "<<n;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
} |