print("s=r*theta") r = float(input("r: ")) theta = float(input("theta: ")) s = r*theta print(s)