Angle X86192


Statement
 

pdf   zip

html

[r]

At the end of each stage of the video game, the ship controlled by the player will face an enemy boss which occupies a large part of the screen. The ship can shoot along any integer angle (in degrees) away from the vertical axis, as shown in the figure. Compute the maximum integer angle such that the ship will hit the boss if it fires in that direction.

Input

The input consists of several test cases. Each test case consists of an integer height 1≤ H≤ 1000, corresponding to the vertical distance from the ship to the boss, and an integer width 1≤ W≤ 1000, corresponding to the horizontal extension of the boss from the vertical axis.

Output

For each test case, a number on a single line representing the maximum integer angle such that the ship will hit the boss.

Public test cases
  • Input

    1 1
    
    

    Output

    45
    
  • Input

    3 4
    
    

    Output

    53
    
  • Input

    26 15
    15 26
    
    

    Output

    29
    60
    
  • Information
    Author
    Anders Jonsson
    Language
    English
    Official solutions
    Unknown. This problem is being checked.
    User solutions
    C++