fork download
  1. # your code goes here
  2.  
  3. def your_name(name,age):
  4. print (name+age) #it's an error from first call but not in second
  5.  
  6. #your_name("hell",15) #first
  7. your_name("hell","15") #second
  8.  
  9.  
Success #stdin #stdout 0.15s 10224KB
stdin
Standard input is empty
stdout
hell15