What will be the output of the following program?
public class Fahrenheit {
public static void main(String[] args) {
double f = 70;
double kelvin = (f + 459.67) * 5 / 9;
System.out.println((int) kelvin);
double newton = (f - 32) * 11 / 60;
System.out.println((int) newton);
}
}