Hello
12345678910
class Main {
public static void main(String[] args) {
System.out.println("Hello World!");
int myNum = 65;
int nextNum = 11;
int sum = myNum + nextNum;
System.out.println("Sum of Integers: " + myNum + " + " + nextNum + " = " + sum);
}
}
Java
INFO