View difference between Paste ID: mrdgqzD0 and Zfk6HWZ8
SHOW: | | - or go back to the newest paste.
1
import java.util.Scanner;
2
public class SumTwoNumbers {
3
	public static void main(String[] args) {
4
		Scanner scanner = new Scanner(System.in);
5
		int first = scanner.nextInt();
6
		int second = scanner.nextInt();
7-
		scanner.close();
7+
8
	}
9
}