Donate Us
No arguments passed but a return value Test Case 1 Input (stdin) 18 Expected Output 18 Test Case 2 Input (stdin) 5 Expected Output 5
#include <iostream>
using namespace std;
int main()
{
int a;
cin>>a;
cout<<a;
return 0;
}