We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- Prepare
- Python
- Math
- Find Angle MBC
- Discussions
Find Angle MBC
Find Angle MBC
Sort by
recency
|
878 Discussions
|
Please Login in order to post a comment
from math import atan, degrees
AB = int(input()) BC = int(input())
print(f"{round(degrees(atan(AB/BC)))}\u00b0")
For Python3 Platform