What will this method call print to the screen?

public static void someMethod(int a, String b, int c)
{
System.out.println(b + + a + , + c);
}

someMethod(9,Mar, 1250)

a) Mar 9, 1250
b) Mar 1250, 9
c) 9 Mar, 1250
d) 9, Mar 1250