mirror of
https://github.com/federico-busato/Modern-CPP-Programming.git
synced 2025-04-20 00:19:03 +03:00
19 lines
202 B
C++
19 lines
202 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;
|
|
} |