online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
#fibonacci sequence n=int(input("No of elements in the sequence:- ")) a,b = 0,1 print(a,b,end=" ") for i in range(n-2): c=a+b print(c,end=" ") a,b=b,c

Compiling Program...

Command line arguments:
Standard Input: Interactive Console Text
×

                

                

Program is not being debugged. Click "Debug" button to start program in debug mode.

#FunctionFile:Line
VariableValue
RegisterValue
ExpressionValue