COS2X
import math
num = int(input("Enter an angle (in degrees)"))
print(math.cos(2*num))
Hurt Hoopoe
import math
num = int(input("Enter an angle (in degrees)"))
print(math.cos(2*num))