write a java program to find sum of two numbers where first number is 18 and second number is 22
Answers
Answered by
1
PROGRAM :-
class MyClass{
public static void main(String[] args){
int sum = 18 + 22;
System.out.println(sum);
}
}
Similar questions