#include <stdio.h> int main() { int M=0; scanf("%d",&M);//地址符别忘了& if(M%5==0) { printf("YES");//分号也不要忽略了,hhh } else printf("NO"); return 0; }