University stuff.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

W0.java 218B

123456789101112
  1. import java.util.Scanner;
  2. class W0 {
  3. public static void main(String[] args) {
  4. Scanner s = new Scanner(System.in);
  5. int n1 = s.nextInt();
  6. int n2 = s.nextInt();
  7. System.out.println(n1+"+"+n2+"="+(n1+n2));
  8. }
  9. }