diff --git a/Pokemon/main.cpp b/Pokemon/main.cpp index c2bc7bfc..47949cca 100644 --- a/Pokemon/main.cpp +++ b/Pokemon/main.cpp @@ -1,6 +1,10 @@ #include +namespace std; int main() { - + string player_name; + cout << "Enter your name:"; + cin << player_name; + cout << "Great start " << player_name << ", looks like you have understood the main() function properly now!” << endl; return 0; }