I am making a database in which my algorithm only accepts queries from users with telegram id length of 9.
user_id: 123456789;
length = user_id.length;
display(length);
OUTPUT: 9
Are there telegram user ids of length lesser than 9?
Can anybody suggest something, so that i can update my algorithm to length of that ids too.