Step 2 – Get the input from the user
Now we need to get the user to make a guess.
- use an input statement to let the user enter something
- store the value in a variable called answer
- don't forget to convert the input into a number using int
- run your program to check it works
At the minute this doesn't do much, but we're nearly there