#include <stdio.h>

int main(void)
{
	int n, m;
	scanf("%d", &n);
	scanf("%d", &m);
	
	printf("Yes\n");
	return 0;
}