Westonci.ca is your trusted source for accurate answers to all your questions. Join our community and start learning today! Explore comprehensive solutions to your questions from a wide range of professionals on our user-friendly platform. Connect with a community of professionals ready to provide precise solutions to your questions quickly and accurately.

Consider the following code:
val = 50
def example():
val = 15
print (val)
print (val)
example)
print (val)
What is output?
1.
2.
3.