/in/foo.c:1:1: warning: data definition has no type or storage class
1 | f_input = input().strip()
| ^~~~~~~
/in/foo.c:1:1: warning: type defaults to 'int' in declaration of 'f_input' [-Wimplicit-int]
/in/foo.c:1:11: warning: implicit declaration of function 'input' [-Wimplicit-function-declaration]
1 | f_input = input().strip()
| ^~~~~
/in/foo.c:1:18: error: request for member 'strip' in something not a structure or union
1 | f_input = input().strip()
| ^
/in/foo.c:2:1: error: expected ',' or ';' before 'try'
2 | try:
| ^~~
/in/foo.c:6:15: warning: character constant too long for its type
6 | print('{:.2f}'.format(c))
| ^~~~~~~~