import cylinder as cyl def main(): print("This is a test of a module") number=float(input("Enter any number: ")) result=cyl.square(number) print("The square of the number you entered is",result)