"""
Write a function guessingGame that initializes a secret number
and takes student guesses as input, printing to them if they are
correct or not, or if they did not input a number between 1 and 100.
Make sure to handle inputs that cannot be converted to integers
properly so that these inputs don't break your function!
"""

def guessingGame(): 
    pass

# Function Call
guessingGame()