a = gets.chomp!.bytes.to_a b = gets.chomp!.bytes.to_a if a.sum == b.sum && a.inject(&:*) == b.inject(&:*) puts 'YES' else puts 'NO' end