moreover's picture
first commit
acd4009
raw
history blame contribute delete
285 Bytes
import java.util.Scanner;
public class Add2Num
{
public static void main(String args[])
{
Scanner sc = new Scanner(System.in);
int n1 = sc.nextInt(), n2 = sc.nextInt(), sum;
sum = n1 + n2;
System.out.println(sum);
}
}