input/code.cpp: In function 'int main()':
input/code.cpp:9:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
9 | for (int i=0; i<(x.length()/2),i+1) {
| ~^~~~~~~~~~~~~~~
input/code.cpp:9:20: warning: value computed is not used [-Wunused-value]
input/code.cpp:9:39: error: expected ';' before ')' token
9 | for (int i=0; i<(x.length()/2),i+1) {
| ^
| ;
input/code.cpp:10:12: error: expected '(' before 'x'
10 | if x[i] != x[x.length-i] {
| ^
| (