/*atoi: convert string s to integer using atof */
int atoi(char s[]){
double atof(char s[]);
return (int) atof(s);
}
/*atoi: convert string s to integer using atof */
int atoi(char s[]){
double atof(char s[]);
return (int) atof(s);
}