These are wrong:

int "one";
int "two";
int "three";
It looks like you want to define variables named one, two and three, so they should be:

int one;
int two;
int three;