View Code of Problem 1

import java.util.*;
import java.math.BigInteger;
public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int a,b;
		a = scan.nextInt();
		b = scan.nextInt();
		System.out.print(a+b);
	}
}

Double click to view unformatted code.


Back to problem 1