What does the following program print?
public static void main(String[] args)
{
int a = 2;
int b = 3;
int c = 4;
if (a < b)
{
if (b < c)
{
if (c < a) System.out.println(a + " " + b + " " + c);
else System.out.println(c + " " + b + " " + a);
}