What will be the output of the following program.
class MethodsTest
{
public static void main(String s[])
{
float m = 34;
float n = 56;
int o = sum(m, n);
System.out.println("o = " + o);
}
public static float sum(float m, float n)
{
System.out.println("m = " + m + " n = " + n);
return m + n;
}
}