Computer Science, asked by estherbara2008, 1 day ago

write a program in java to subtract two numbers. Take the numbers in your program and display the output.​

Answers

Answered by lakshmichaitanyachal
0

```

int a = 10;

int b = 5;

System.out.println(a - b);

```

Similar questions