# Testing new module
import myConversionCheck as cc

while True:
    reply = raw_input("Enter an integer, or return: ")
    if reply == "":
        break
    # Call the new function from the module
    if cc.couldBeInt(reply):
        num = int(reply)
        for i in range(num):
            print "It'a number!"
    else:
        print "That was not an integer."
