Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
108923 | 彭士宝 | [在线测评解答教程] A+B Problem | Java | Wrong Answer | 0 MS | 316 KB | 253 | 2025-01-23 16:29:07 |
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"); } }
------Input------
87 93
------Answer-----
180
------Your output-----