Run »
public class Main { public static void main(String[] args) { int x = 10; int y = 20; int z = x + y; System.out.println(z); } }
30