Given two strings, repeatedly cycle through all of the letters in the first string until it is the same length as the second string.
string_cycling("abc", "hello") ➞ "abcab"
string_cycling("programming", "sample") ➞ "progra"
string_cycling("ha", "good morning") ➞ "hahahahahaha"
All tests will include valid strings.