Created
July 2, 2017 08:18
-
-
Save SteelPh0enix/043d9523d363eed0875b5e70f38cd068 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| int main() { | |
| int user_data; | |
| std::cin >> user_data; | |
| std::cout << "You have entered " << user_data << std::endl; | |
| return 0; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment