Find Angle MBC in python HackerRank Solution

Hello coders, In this post, you will learn how to solve Find Angle MBC in python HackerRank Solution. This problem is a part of the Python Hacker Rank series.

Find Angle MBC in python - HackerRank Solution
Find Angle MBC in python HackerRank Solution

Find Angle MBC in python HackerRank Solution

problem

Find Angle MBC in python HackerRank Solution

ABC is a right triangle, 90° at B.Therefore, ABC = 90°.
Point M is the midpoint of hypotenuse AC.
You are given the lengths AB and BC.
Your task is to find MBC (angle, as shown in the figure) in degrees.

Input Format :

The first line contains the length of side AB.
The second line contains the length of side BC.

Constraints :

  • 0 < AB <= 100
  • 0 < BC <= 100
  • Lengths AB and BC are natural numbers.

Output Format :

Output MBC in degrees.
Note: Round the angle to the nearest integer.

Examples :
If angle is 56.5000001°, then output 57°.
If angle is 56.5000000°, then output 57°.
If angle is 56.4999999°, then output 56°.

Sample Input :

10
10

Sample Output :

45°

Find Angle MBC in python HackerRank Solution

# Find Angle MBC in python - Hacker Rank Solution
# Python 3
# Enter your code here. Read input from STDIN. Print output to STDOUT
# Find Angle MBC in python - Hacker Rank Solution START
import math
AB = int(input())
BC = int(input())
H = math.sqrt(AB**2 + BC**2)
H = H/2.0
adj = BC/2.0
Output = int(round(math.degrees(math.acos(adj/H))))
Output = str(Output)
print(Output+"°")
# Find Angle MBC in python - Hacker Rank Solution END

Disclaimer: The above Problem (Find Angle MBC in python) is generated by Hackerrank but the Solution is Provided by Chase2Learn. This tutorial is only for Educational and  purposes. Authority if any of the queries regarding this post or website fill the following contact form thank you.

Sharing Is Caring

Leave a Comment