执行下方的程序,会输出的是 ?( )
a = 'Good'
b = 'Morning'
print(a + b * 2)
a + b * 2
GoodMorning
GoodMorningGoodMorning
GoodMorningMorning