class Program { public static void main(String args[]) { int a = 5; int b = 4; int c = 3; System.out.printf("%d %d %d\n", a , b, c); } }