Skip to content

Instantly share code, notes, and snippets.

@holic158
Last active May 29, 2018 08:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save holic158/a5b22e63e3a62c2566e4b467576f74c9 to your computer and use it in GitHub Desktop.
Save holic158/a5b22e63e3a62c2566e4b467576f74c9 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);
//Scanner 객체 생성
int a;
int 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