当前你的浏览器版本过低,网站已在兼容模式下运行,兼容模式仅提供最小功能支持,网站样式可能显示不正常。
请尽快升级浏览器以体验网站在线编辑、在线运行等功能。
12 45
57
#include <stdio.h>
int main()
{
int A, B;
scanf("%d%d", &A, &B);
printf("%d", A+B);
return 0;
}
//参考代码Java
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
class Main
{
public static void main(String[] args) throws IOException
{
args = new BufferedReader(new InputStreamReader(System.in)).readLine().split(" ");
System.out.println(Integer.parseInt(args[0])+Integer.parseInt(args[1]));
}
}
时间上限 | 内存上限 |
1000 MS | 128 MB |