2025-02-27 20:06:15 +08:00

15 lines
168 B
C

#include <stdio.h>
int main(){
int x;
while(1){
scanf("%d", &x);
if(x == 0){
break;
}
printf("%d:%s\n", x, (x%5==0&&x%7==0?"Yes":"No"));
}
return 0;
}