write a program in java to subtract two numbers. Take the numbers in your program and display the output.
Answers
Answered by
0
```
int a = 10;
int b = 5;
System.out.println(a - b);
```
Similar questions