题解

2 条题解

  • 0
    @ 2023-06-10 13:42:03
    #Python 3
    A,B=map(int,input().split());print(A+B);
    
  • 0
    @ 2022-01-10 09:47:29

    #include <iostream>
    using namespace std;
    int main()
    {
    int a, b;
    cin >> a >> b;
    cout << a + b << endl;
    return 0;
    }

  • 1

信息

ID
1004
难度
7
分类
(无)
标签
递交数
14
已通过
10
通过率
71%
上传者