×

第四页第3题

TYC TYC 发表于2026-07-30 14:49:45 浏览53 评论0

抢沙发发表评论

#include<bits/stdc++.h>
using namespace std;
int main(){
	freopen("data.in","r",stdin);
	freopen("data.out","w",stdout);
	int a,b;
	scanf("%d %d",&a,&b);
	printf("%d",a+b);
	fclose(stdin);
	fclose(stdout);
    return 0;
}


二者

访客