# Hw3 program three
# This is supposed to print 7, but it first prints 7, then it prints "none"

def f(x):
    f = x+1
    print f

def main():
    A = f(6)
    print A

main()
