#include<stdio.h>
using namespace std;
bool isAlphabetic(string s){
    for(char c:s){
        if(!isalpha())
    }
}