Create 1000_冰封.java

pull/22/head
KiritoTRw 2016-07-06 13:56:19 +08:00 committed by GitHub
parent cf749a5291
commit 577a9dde8d
1 changed files with 13 additions and 0 deletions

13
POJ/1000_冰封.java Normal file
View File

@ -0,0 +1,13 @@
import java.util.Scanner;
/**
* @author ice1000
* Created by weber on 2016/6/13.
*/
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int a = scanner.nextInt(), b = scanner.nextInt();
System.out.println(a + b);
}
}