My issue
how to print the code
My code
# cook your dish here
Problem Link: START01 Problem - CodeChef
how to print the code
# cook your dish here
Problem Link: START01 Problem - CodeChef
Just initiate a variable as an integer then take user input in it using cin>> then print it using cout
#include <iostream>
using namespace std;
int main() {
int n;cin>>n;
cout<<n;
return 0;
}