1# calling a function
2
3def f():
4    print(1)
5f()
6