import java.util.Scanner; class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); double r = sc.nextDouble(), d = sc.nextDouble(); sc.close(); System.out.print(Math.sqrt(Math.pow(d, 2) - Math.pow(r, 2))); } }