11 lines
201 B
C++
11 lines
201 B
C++
#include <iostream>
|
|
|
|
int main(int argc, char const *argv[])
|
|
{
|
|
std::cout << "Type in a number: " << std::endl;
|
|
int x;
|
|
std::cin >> x;
|
|
std::cout << "You typed: " << x << std::endl;
|
|
return 0;
|
|
}
|