A677.A+B+CProblem题解:
2026-02-25 11:21:35
发布于:四川
0阅读
0回复
0点赞
A677.A+B+C Problem
#include<bits/stdc++.h>
using namespace std;
int main(){
long long a,b,c;//注意开long long
scanf("%lld %lld %lld",&a,&b,&c);//节省时间(骗你的)
printf("%lld",a+b+c);//节省时间(骗你的)
return 0;
}
这里空空如也






有帮助,赞一个