#include #include int main() { uint64_t a, b, c; scanf("%llu %llu %llu", &a, &b, &c); if ((a * b * c) % 3 == 0)puts("Yes");else puts("No"); }