Codechef Problems: Number Mirror (START01)
Problem Statement:
https://www.codechef.com/problems/START01
Solution:
Given : input integer n
Problem : Write the integer n as output
Code Solution:
#include <bits/stdc++.h>
using namespace std;
int main() {
int n;
cin >> n;
cout << n << endl;
return 0;
}
Comments
Post a Comment