Try the following example Ramu was given a game by his friend raj. When raj says a number then raj needs to tell that number. And when Raj says a word or character he has to remain silent. Kindly help Raju and Ramu to solve the task. Refer the sample input and output for example Example Input 1: 34 Output 1: The entered number is:34 Input 2: 14 Output 2: The entered number is:14 Test Case 1 Input (stdin) 34 Expected Output The entered number is:34 Test Case 2 Input (stdin) 23 Expected Output The entered number is:23
#include <iostream>
using namespace std;
int main()
{
int i;
cin>>i;
cout<<"The entered number is:"<<i;
return 0;
}