input = gets(chomp: true) # if 400 <= input.to_i # puts "Yes" # else # puts "No" # end puts 400 <= input.to_i ? "Yes" : "No"