def hello(): print("Hello Python!") hello() hello() hello() def hello2(name): print("Hello",name) hello2("Justin") hello2("John") def triangle(a,h): c=a*h/2 return c s1=4 s2=5 s3=triangle(s1,s2) print(s1," ",s2," ",s3)