# 导入数学库
import math
# 返回 y/x 的反正切值(弧度制)
print(math.atan2(8, 5))
print(math.atan2(20, 10))
print(math.atan2(34, -7))
print(math.atan2(-340, -120))