#!/usr/bin/env python3 a, b = map(int, input().split()) print('Yes' if a <= b else 'No')