#include<stdio.h>
#include<stdbool.h>
#include<ctype.h>

bool check_digits_only(const char *s) {
    while (*s) {
        if (!isdigit(*s)) {
            return false;
        }
        s++;
    }
    return true;
}
int main(){
    char str1[] = "12345";
    
    printf("%s\n", str1, check_digits_only(str1) ? "TRUE" : "FALSE");

   return 0;
}