Header Ads Widget

Number Mirror | Codechef solution

  Problem:-

Write a program that accepts a number, n, and outputs the same.

Input

The only line contains a single integer.

Output

Output the answer in a single line.

Constraints

  • 0 ≤ n ≤ 105

Sample Input

123

Sample Output

123

Code:-

#include <iostream>
using namespace std;

int main() {
int n;
cin>>n;
cout<<n;
    // your code goes here
    return 0;
}

Recommended Post:

Cracking the coding interview:-

 Array and string:-

Tree and graph:-

Hackerearth Problems:-

Hackerrank Problems:-

Data structure:-

Key points:-

 MCQs:-

Post a Comment

0 Comments