#include<stdio.h> #include<ctype.h> void main() { int num; scanf("%d", &num); if(isdigit(num)) { printf("yes"); } else { printf("no"); } }