1.1. Input/print: Sum of three numbers
Write a program that takes three numbers and prints their sum. Every number is given on a separate line.
Example input
2
3
6
Example output
11
Write a program that takes three numbers and prints their sum. Every number is given on a separate line.
Example input
2
3
6
Example output
11
how do I do this using java?