Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- x, b = map(int, input().split())
- t = x / b
- if t == 0 or t == 1 or t == 2:
- print("sin = 0")
- elif 0 < t < 1:
- print("sin > 0")
- else:
- print("sin < 0")
- if t == 0.5 or t == 1.5:
- print("cos = 0")
- elif 0.5 < t < 1.5:
- print("cos < 0")
- else:
- print("cos > 0")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement