Number Mirror CodeChef Solution

Problem – Number Mirror CodeChef Solution

Problem Statement

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

Number Mirror CodeChef Solution in Java

/* package codechef; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Codechef
{
	public static void main (String[] args) throws java.lang.Exception
	{
		// your code goes here
		Scanner sc=new Scanner(System.in);
		int n=sc.nextInt();
		System.out.println(n);
	}
}

Number Mirror CodeChef Solution in C++17

#include <iostream>
using namespace std;

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

Number Mirror CodeChef Solution in Pyth 3

n = input()
print(n)
Number Mirror CodeChef Solution Review:

In our experience, we suggest you solve this Number Mirror CodeChef Solution and gain some new skills from Professionals completely free and we assure you will be worth it.

If you are stuck anywhere between any coding problem, just visit Queslers to get the Number Mirror CodeChef Solution

Find on CodeChef

Conclusion:

I hope this Number Mirror CodeChef Solution would be useful for you to learn something new from this problem. If it helped you then don’t forget to bookmark our site for more Coding Solutions.

This Problem is intended for audiences of all experiences who are interested in learning about Data Science in a business context; there are no prerequisites.

Keep Learning!

More Coding Solutions >>

LeetCode Solutions

Hacker Rank Solutions

CodeChef Solutions

Leave a Reply

Your email address will not be published. Required fields are marked *