#Challenges 3
def moan():
print("\nPython is useless!\nAnd so are these worksheets")
moan()
# Challenge 4
def twice(x):
print(x*x)
twice(5)