Answer:
a system that is a computer
s1='abc'
s2='wxyz'
length=len(s1)
s3=''
for i in range(length):
s3+=s1[i]+s2[i]
print(s3)