/in/foo.cc:2:2: error: invalid preprocessing directive #i3nclude
#i3nclude <cmath>
^~~~~~~~
/in/foo.cc: In function 'int main()':
/in/foo.cc:17:38: error: 'pow' was not declared in this scope
len += sqrt(pow(x[i] - x[i - 1], 2) + pow(y[i] - y[i - 1], 2));
^
/in/foo.cc:17:65: error: 'sqrt' was not declared in this scope
len += sqrt(pow(x[i] - x[i - 1], 2) + pow(y[i] - y[i - 1], 2));
^
/in/foo.cc:20:34: error: 'pow' was not declared in this scope
len += sqrt(pow(x[n-1] - x[0], 2) + pow(y[0] - y[n - 1], 2));
^
/in/foo.cc:20:61: error: 'sqrt' was not declared in this scope
len += sqrt(pow(x[n-1] - x[0], 2) + pow(y[0] - y[n - 1], 2));
^