s = gets.chomp is_ok = true (s.size / 2).times {|i| is_ok = false if s[2 * i] == ' ' or s[2 * i + 1] != ' ' } puts is_ok ? "Yes" : "No"