a, b, c = gets.split('.').map(&:to_i) x, y, z = gets.split('.').map(&:to_i) if x < a puts 'YES' elsif x == a && y < b puts 'YES' elsif x == a && y == b && z < c puts 'YES' else puts 'NO' end