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

}