math functions

Pythagoras Theorem

import math
print("pythagoras theorem ")
s1=float(input("enter one side "))
s2=float(input("enter another side "))
h=math.hypot(s1,s2)
print("hypotnuse of the triangle is ",h)
print("\nto find ratios of an angle")
s1=float(input("enter angle in radians "))
print("sin("+str(s1)+")",math.sin(s1))
print("cos("+str(s1)+")",math.cos(s1))
print("tan("+str(s1)+")",math.tan(s1))