我\xc2\xb4m 是编程新手,所以我不知道出了什么问题。请帮忙
\n\nfrom math import atan2, pi\nx = int(input("value of x"))\ny = int(input("value of y"))\nr = (x**2 + y**2) ** 0.5\nang = atan2(y/x)\nprint("Hypotenuse is", r, "angle is", ang)\nRun Code Online (Sandbox Code Playgroud)\n