比赛 20191022轻松模拟测试 评测结果 WAWWWWWWWW
题目名称 原谅 最终得分 10
用户昵称 jekyll 运行时间 0.005 s
代码语言 C++ 内存使用 13.66 MiB
提交时间 2019-10-22 19:24:15
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;

const int maxn=1000005;

inline int read(){
	register int x=0,w=1,ch=getchar();
	for(;ch<'0'||ch>'9';ch=getchar())if(ch=='-')w=-1;
	for(;ch>='0'&&ch<='9';ch=getchar())x=x*10+ch-48;
	return w*x;
}

int main(){
	freopen("green.in","r",stdin);
	freopen("green.out","w",stdout);
	read();int k=read();
	if(k==5)--k;
	cout<<k<<'\n';
}