# frozen_string_literal: true A, B = gets.split.map { _1.to_i } def solve A <= B ? 'Yes' : 'No' end puts solve