Computer Science, asked by aakarshkb1, 9 months ago

write a program in java to input two numbers and print their sum . also print weather their sum is a single or a double digit or more than a double digit number.​

Answers

Answered by syedumar26
1

Answer:

public class AddTwoIntegers {

int first = 10;

int second = 20;

int sum = first + second;

println("The sum is: " + sum);

Similar questions