#Uncomment the functions to debug them!

################# Problem 2 #########################

def nestedFor(outerVal, innerVal):
    print("Before outer for loop: ")
    for i in range(outerVal):
        print("  Entered outer loop, iteration", i)
        for j in range(innerVal):
            print("    Entered inner loop, iteration", j)
        print("  Exited inner loop: ")
    print("Exited outer loop: ")


print("Before calling fn: ")
nestedFor(2, 3)
print("After calling fn: ")


def oddsBefore(x):
    pass
