Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
2208 吴奕希 [在线测评解答教程] A+B Problem Java Accepted 94 MS 12856 KB 253 2023-12-16 18:25:45

Tests(11/11):


Code:

import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner in = new Scanner(System.in); int a = in.nextInt(); int b = in.nextInt(); System.out.print(a + b + "\n"); } }