#include <stdio.h>

int main(void) {
	char buf[100];
		fgets(buf, 100, stdin);
		if (strcmp(buf, "да") == 0) {
			printf("YES\n");
		}
	return 0;
}
