You are given two strings word1 and word2. Merge them by adding letters in alternating order, starting with word1. If a string is longer than the other, append the additional letters to the end.
Return the merged string.
Input: Two comma-separated strings: word1 and word2.
Output: A single merged string.
Input: abc,pqr
Output: apbqcr
Explanation: a+p, b+q, c+r → 'apbqcr'.Input: ab,pqrs
Output: apbqrs
Explanation: a+p, b+q, then 'rs' appended → 'apbqrs'.Input: abcd,pq
Output: apbqcd
Explanation: a+p, b+q, then 'cd' appended → 'apbqcd'.1 <= word1.length, word2.length <= 100word1 and word2 consist of lowercase English letters