3 条题解

  • 1
    @ 2024-7-25 12:26:47

    参考答案:

    #include<iostream>
    using namespace std;
    int main()
    {
        int a, b;
        cin >> a >> b;
        cout << a + b << endl;
    
        return 0;
    }
    
    • 0
      @ 2025-10-13 9:18:44

      Python:

      while True:
      	try:
      		a,b=map(int,input().strip().split())
      		ans = a+b
      		print(ans)
      	except:
      		break
      
      
      • 0
        @ 2024-12-5 18:10:10
        #include<stdio.h>
        int main(void)
        {
            int a, b;
            scanf("%d%d",&a,&b);
            printf("%d",a+b);
            return 0;
        }
        • 1

        信息

        ID
        13
        时间
        1000ms
        内存
        64MiB
        难度
        6
        标签
        递交数
        15
        已通过
        13
        上传者