Write a Python function pythagoras(a, b) which accepts the two sides of a right angle triangle(a, b) and compute the length of the hypotenuse, c.
There will be two inputs.
a (float)
b (float)
The function should return a single float representing the length of the hypotenuse of a right angle triangle.
INPUT:
(3, 4)
OUTPUT:
5