2 条题解

  • 3
    @ 2024-1-26 14:53:42

    这题不多说!!!上代码???? c语言代码

    #include<stdio.h>
    int main()
    {
        int a,b;
        scanf("%d%d",&a,&b);
        printf("%d",a+b);
        return 0;
    }
    

    python代码

    print(sum(map(int,input().split())))
    

    绝对正确!!(不对你打我)🦌🦌🦌

    • 1

      人机提

      using namespace std;
      int main () {
      	long x , y ;
      	for(int i = 0 ; i < 2 ; i ++) {
      		cin >> x;
      		y += x;
      	}
      	cout<<y;
      }
      
      • 1

      信息

      ID
      1
      时间
      1000ms
      内存
      256MiB
      难度
      1
      标签
      递交数
      53
      已通过
      15
      上传者