Skip to content

Instantly share code, notes, and snippets.

@Baekjoon
Created April 17, 2015 07:13
Show Gist options
  • Save Baekjoon/6500660026c08eede37b to your computer and use it in GitHub Desktop.
Save Baekjoon/6500660026c08eede37b to your computer and use it in GitHub Desktop.
Java-Scanner
import java.util.*;
public class Main {
public static void main(String args[]) {
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
int b = sc.nextInt();
System.out.println(a+b);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment