/******************************************************************************
Welcome to GDB Online.
GDB online is an online compiler and debugger tool for C, C++, Python, Java, PHP, Ruby, Perl,
C#, VB, Swift, Pascal, Fortran, Haskell, Objective-C, Assembly, HTML, CSS, JS, SQLite, Prolog.
Code, Compile, Run and Debug online from anywhere in world.
*******************************************************************************/
#include <stdio.h>
int main()
{
int N,r,s=0,a,b;
scanf("%d",&N);
while(N!=0)
{
r=N%10;
s=s+r;
N=N/10;
}
if(s%2==0)
{
a=s;
}
if(s%2!=0)
{
b=s;
}
if(a%4==0 || b%3==0)
{
printf(“yes”);
}
else
{
printf(“no”);
}
return 0;
}