What will be the output of the following program?
public class Root {
public static void main(String[] args) {
int x = 4;
int y = 9;
System.out.println(Math.sqrt(x) + " " + Math.sqrt(y));
int sum = (int) (Math.sqrt(x) + Math.sqrt(y));
System.out.println(sum);
}
}