class Sum{public static void main(String[] args) { int num1 = 5, num2 = 15, sum; sum = num1 + num2;
System.out.println("Sum of these numbers: "+sum); }}
View all Questions