Codeforces 959A Mahmoud and Ehab and the even-odd game

水就完事了!

判断奇偶。

#define _CRT_SECURE_NO_WARNINGS
#include 
#include 
#include 
#include 

using namespace std;



int main() {
	int n;
	scanf("%d", &n);
	if (n % 2 == 0) {
		printf("Mahmoud\n");
	}
	else {
		printf("Ehab\n");
	}
	//system("pause");
	return 0;
}

 

你可能感兴趣的:(ACM)