3의배수이거나 5의배수이면 yes를 아니면 no 출력하는 프로그램짜는건데

오류좀 긁어주세요

 

 

 

 

 

 

#include <stdio.h>
#include <stdlib.h>

int main()
{
    int c;
    scnaf("%d", &c);
    if (c%3 ==0)
    if (c%5 ==0);
    printf("yes");
    else
    printf("no");
   
    system("pause");
   
    return 0;
}