from math import*

def hypothenuse(a,b):
	c=sqrt(a**2+b**2)
	return c

print(hypothenuse(3,4))
