1. Write a menu driven program to implement of list as a stack containing integers.
print('1. print list of integers') n = int(input ('')) list1 = [] if n == 1: input1 = int(input ('')) for i in range(input1): list1.append(i)