#include<bits/stdc++.h>
#include<cstdlib>
#include<windows.h>
using namespace std;
int main(){
	int n, count = 0;
	while(1){
		cout << "----O" << endl;
		cout << "    .-----." << endl;
		cout << "   /电子木鱼\\" << endl;
		cout << "   \\________/" << endl;
		cout << "来敲电子木鱼吧!按‘1’+ ‘Enter’ 键敲下, 其他任意键+‘Enter’ 结束" << endl;
		cin >> n;
		system("cls");
		if(n == 1){
			count ++;
			cout << "              功德+1";
			cout << "----O----" << endl;
			cout << "    .-----." << endl;
			cout << "   /电子木鱼\\" << endl;
			cout << "   \\________/" << endl;
			cout << "来敲电子木鱼吧!按‘1’+ ‘Enter’ 键敲下, 其他任意键+‘Enter’ 结束" << endl;
			Sleep(250);
		}system("cls");
		if(n != 1){
			break;
		}
	}
	cout << "\n您总计获得了" << count << "点功德,";
	if(count <= 10) cout << "佛祖没有感受到你的诚意" << endl;
	else if(count <= 50) cout << "佛祖警告你只能再看" << count / 3 << "张梗图了哦" << endl;
	else if(count <= 100) cout << "佛祖默默为你点赞" << endl;
	else cout << "佛祖允许你放声大笑" << endl;
	return 0; 
}