#include int main() { int n; scanf("%d", &n); char s[8] = "Short"; s[n] = '\0'; printf("%s\n", s); return 0; }