#try to avoid input function a = [1,2,3,"hello","hi"] b = [-54,-34,5,"world","python"] c = a for i in b: c.append(i) print(c)
Click the run button. Try to avoid input() function.