# your code goes here

def your_name(name,age):
	print (name+age)  #it's an error from first call but not in second

#your_name("hell",15)  #first
your_name("hell","15")  #second

	