Skip to content

Instantly share code, notes, and snippets.

@Baekjoon
Created September 5, 2015 17:19
Show Gist options
  • Save Baekjoon/0c7632bd9b01909c7e6f to your computer and use it in GitHub Desktop.
Save Baekjoon/0c7632bd9b01909c7e6f to your computer and use it in GitHub Desktop.
1000
import java.util.*;
public class Main{
public static void main(String args[]){
Scanner sc = new Scanner(System.in);
int a, b;
a = sc.nextInt();
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