#include <stdio.h> int n; scanf("%d",&n);
#include <string.h> bool isNumber(string s) { for (int i = 0; i < strlen(s); i++) if (isdigit(s[i]) == false) return false; return true; }