0 / 60 seg.

What is the output of this code?

def myFunction(country = "France"):
    print("Hello, I am from", country)
myFunction("Spain")
myFunction("")
myFunction()