└── public class MyClass {.txt /public class MyClass {.txt: -------------------------------------------------------------------------------- 1 | public class MyClass { 2 | public static void main(String args[]) { 3 | int x=10; 4 | int y=25; 5 | int z=x+y; 6 | 7 | System.out.println("Sum of x+y = " + z); 8 | } 9 | } --------------------------------------------------------------------------------