class Foo:
    pass
def hello():
    print('hello, world')
x = 13

class Square():
    def __init__(self, x):
        self.inital = x
        self.squared = x**2