Posts

Showing posts from April 30, 2020

Find Angle MBC | HackerRank solution in python3

import   math ab = int ( input ()) bc = int ( input ()) print ( str ( int ( round ( math . degrees ( math . atan2 ( ab , bc ))))) +  "° " )