mycpp-school/test.cpp

11 lines
115 B
C++
Raw Permalink Normal View History

2017-01-10 00:22:00 +07:00
#include "iostream"
using namespace std;
int main(){
int a;
cout<<"Enter a: ";cin>>a;
cout<<a<<endl;
return 0;
}