#include<iostream>
#include<cctype>>
using namespace std;

int main() {
    char ch;
    cin>>ch;
    if(isdit(ch))
    cout<<"Digit";
    else if (isalpha(ch))
    cout<<"Alphabet";
    else
    cout<<"Special Character";
    
    return 0;
}