#include using namespace std; using ll = long long; #define rep(i,n) for (int i = 0; i < (n); ++i) #define rep2(i,m,n) for (int i = m; i < (n); ++i) #define all(x) (x).begin(),(x).end() template void chmin(T &a, const T &b) noexcept { if (b < a) a = b;} template void chmax(T &a, const T &b) noexcept { if (a < b) a = b;} template void drop(const T &x) { std::cout< void debug_out(const T &x, const Args &... args) { std::cout<> x >> y >> z; if (x%3==0 or y%3==0 or z%3==0) cout << "Yes" << endl; else cout << "No" << endl; return 0; }