Lab - EchoΒΆ

Let’s create a simple toy that accepts input from the user, and tells the user if they typed in an integer.

'''
Lab - Echo

Write a program that:

* Queries the user for input.
* If the input is an integer, tell the user that they gave us
  an integer, and echo the input.
* If the input is not a number, echo the input.
* If the user input is the word "quit", after doing the above,
  exit the program.
* Repeat until the user quits
'''

def main():
    pass

if __name__ == '__main__':
    main()