write the step to design the program to add two number
Answers
Answered by
0
Answer:
class Add
{
public static void main(String args[ ])
{
int a, b, c;
a=10;
b=20;
c=a + b;
System.out.println("The sum is"+c);
}
}
Similar questions