/*************************************************************************
 * Name:
 * Login:
 * Precept:
 *
 * Description: Prints the distance from (x, y) to the origin, where x and
 * y are integers.
 * 
 * Dependencies: None
 *
 * % java Distance 3 4                                  This is Booksite
 * distance from (3, 4) to (0, 0) = 5.0                 Web Exercise 1.2.1.
 *************************************************************************/

public class Distance {
    public static void main(String[] args) {
        // input point coordinates
        int x = Integer.parseInt

        
        // compute distance
  
        
  
        // output distance
  
  
    }   
}