Back P1.1 Write a program that prints a greeting of your choice, perhaps in a language other than English. Solution: import static java.lang.System.out; class P0101 { public static void main(String[] args) { out.println("Magandang Umaga!"); } }