#include<stdio.h>
#include<ctype.h>
int main()
{
    char s[101];
    scanf("%s",s);
    for(int i = 0;s[i]!='\0'; i++){
        if(!isdidits(s[i])){
            printf("FALSE");
            return 0;
        }
    }
    printf("TRUE");
    return 0;
}