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