but when i use for loop i am anle to get the output.
a = [1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89]
b = [1, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13]
x = 0
Comm = [] #common int in both lists
while x in range(0,len(a)):
if a[x] in b:
Comm.append(a[x])
x += 1
print(Comm)