Posts

Showing posts from July, 2021

Find Angle MBC Hackerrank solution

Image
Answer : - from math import atan,degrees AB,BC = [int(input()) for _ in '12'] angle = round(degrees(atan(AB/BC))) a=u"\N{DEGREE SIGN}" print(angle,a,sep="")