/in/foo.c:1:1: warning: data definition has no type or storage class
x = int(input())
^
/in/foo.c:1:1: warning: type defaults to 'int' in declaration of 'x' [-Wimplicit-int]
/in/foo.c:1:5: error: expected expression before 'int'
x = int(input())
^~~
/in/foo.c:2:26: error: stray '\357' in program
if x >= 1 and x <= 30:
^
/in/foo.c:2:27: error: stray '\274' in program
if x >= 1 and x <= 30:
^
/in/foo.c:2:28: error: stray '\232' in program
if x >= 1 and x <= 30:
^
/in/foo.c:7:1: warning: data definition has no type or storage class
fibn1 = 1;
^~~~~
/in/foo.c:7:1: warning: type defaults to 'int' in declaration of 'fibn1' [-Wimplicit-int]
/in/foo.c:8:1: error: expected identifier or '(' before 'for'
for i in range(3,x+1,1):
^~~