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 ))))) + "° " )
I use this blog to express my thoughts and share a variety of content. I also provide accurate guitar chords for some great songs and post solutions to HackerRank challenges, primarily using Python 3.