題目:https://rosalind.info/problems/ini3/
給一長字串,然後a, b, c, d 4個數字
切出字串[a~b]、字串[c~d]的位置,連接後印出來
(須包含字串[b]、字串[d]的位置)
s = "HumptyDumptysatonawallHumptyDumptyhadagreatfallAlltheKingshorsesandalltheKingsmenCouldntputHumptyDumptyinhisplaceagain"
a, b, c, d = 22, 27, 97, 102
print(s[a:b+1], s[c:d+1])