Spaces:
Sleeping
Sleeping
File size: 285 Bytes
acd4009 |
1 2 3 4 5 6 7 8 9 10 11 12 |
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);
}
} |