Created
September 5, 2015 17:29
-
-
Save Baekjoon/c236b060f64c9f6eebda to your computer and use it in GitHub Desktop.
10951
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); | |
| int a, b; | |
| while (sc.hasNextInt()) { | |
| 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