//　SquareRoot	平方根の計算（数学関数を用いる）
//					2019.04.21
//					2010.04.16
//					by M.Yanaka
public class SquareRoot {
	public static void main(String[] args){
		System.out.println(Math.sqrt(2));
	}
}
