PLEASE WRITE IN PYTHON A sequence of integers is said to beFibonacci-like if each element of the sequence (except the firsttwo elements) is the sum of the previous two integers in thesequence. For example, the sequence 10, 14, 24, 38, 62, 100, 162,262 is Fibonacci-like. Note that the first two integers in theabove sequence are arbitrary. Each of the remaining integers is thesum of the two integers just before it in the sequence. Forexample, 24 = 10 + 14, 38 = 14 + 24, 62 = 24 + 38, and so on. Yourprogram must query ‘‘Enter the sequence.’’. The user will inputintegers separated by a ’,’. There could be arbitrary amount ofblank space between two successive numbers. Your program must readin the user input and determine if the sequence is Fibonacci-likeor not by outputting respectively, ‘‘The sequence isFibonacci-like.’’ or ‘‘The sequence is NOT Fibonacci-like.’’