Last active
May 29, 2018 08:00
-
-
Save holic158/a5b22e63e3a62c2566e4b467576f74c9 to your computer and use it in GitHub Desktop.
1000번 문제
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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