Программа:
Python:
from math import *
x,y = map(float, input().split())
f = pow(abs(1 - tan(x)), (cos(x)/sin(x))) + cos(x - y)
print(f)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Verified answer
Программа:
Python:
from math import *
x,y = map(float, input().split())
f = pow(abs(1 - tan(x)), (cos(x)/sin(x))) + cos(x - y)
print(f)