

class Test_Imp {
	public static void main(String[] args) {
		double x = 0.2;
		System.out.println("Sine = " + Math.sin(x));
	}
}

