str1 = 'That makes no sense. ' str2 = 'Period. ' cnt = 1 res = str1 + str2 while cnt < 10: res = res + str2 cnt = cnt + 1 print(res)
Standard input is empty
That makes no sense. Period. Period. Period. Period. Period. Period. Period. Period. Period. Period.