Codeforces Round #473 (Div. 2), problem: (A) Mahmoud and Ehab and the even-odd game Solution In C/C++

#include <stdio.h>

int main() {
int N;
scanf(“%d”, &N), puts(N&1 ? “Ehab” : “Mahmoud”);
}

Leave a Reply

Your email address will not be published. Required fields are marked *