比赛 CSP2022普及组 评测结果 WWWAWWWWWWWWWWWWWWWW
题目名称 上升点列 最终得分 5
用户昵称 宇战 运行时间 0.000 s
代码语言 C++ 内存使用 0.00 MiB
提交时间 2022-10-29 17:10:39
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
long long n,m,s,d=1,Nn=1000000000;
int main(){
	freopen("csp2022pj_point.in","r",stdin);
	freopen("csp2022pj_point.out","w",stdout);
	cin>>n>>m;
	cout<<n+m-3;
	return 0;
}