diff --git a/POJ/1000_冰封.java b/POJ/1000_冰封.java new file mode 100644 index 0000000..81c5837 --- /dev/null +++ b/POJ/1000_冰封.java @@ -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); + } +}