# Arup Guha
# 12/3/2020
# Example of returning two things from a function in python

# When you return separate the two things with a comma.
def returnTwoInts():
    return 3,5

# When calling, assign the return value to two variables separated by a comma.
a,b = returnTwoInts()
print(a,b)
