Add Initial commit

This commit is contained in:
Lev
2021-04-12 21:57:32 -05:00
parent 3d74b0339a
commit 6a213f8d19
2 changed files with 10 additions and 0 deletions

Binary file not shown.

View File

@ -0,0 +1,10 @@
#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;
}