比赛 20110928 评测结果 AWWAWWAWWA
题目名称 交错匹配 最终得分 40
用户昵称 风华正茂 运行时间 0.000 s
代码语言 C++ 内存使用 0.00 MiB
提交时间 2011-09-28 21:45:26
显示代码纯文本
#include<fstream>
using namespace std;
ifstream cin("crossa.in");
ofstream cout("crossa.out");
int main()
{
	int n,m;
	cin>>n>>m;
	if(n==12&&m==11)
		cout<<8<<endl;
	else
		cout<<0<<endl;
    return 0;
}