#include <stdio.h> int main() { int m = 0; while(scanf("%d",&m) !=EOF) { if(m %5==0) { printf("YES\n"); } else printf("NO\n"); } return 0; }