#include<stdio.h>
#include<string.h>
#include<ctype.h>

int main()
{
    char s[105];
    scanf("%s",%s);
    int l = strlen(s);
    int od = 1;
    for(int i = 0; i < l; i++)
    {
        if(!isdigit(s[i]))
        {od = 0;
        break;}
    }
    if(od)
    {printf("TRUE"); }
    else
    {printf("FALSE");}
    return 0;
}