Skip to content

Instantly share code, notes, and snippets.

@alagalia
Created August 29, 2015 18:47
Show Gist options
  • Save alagalia/7077942d1a511491eaab to your computer and use it in GitHub Desktop.
Save alagalia/7077942d1a511491eaab to your computer and use it in GitHub Desktop.
import java.util.Scanner;
public class problem6_Sum_Two_Numbers {
public static void main(String[] args) {
Scanner scaner = new Scanner(System.in);
int a = scaner.nextInt();
int b = scaner.nextInt();
int sum = a + b;
System.out.println(sum);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment