G.cpp 179 B

1234567891011121314
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. int main() {
  4. int n;
  5. cin >> n;
  6. if (n % 15 == 0)
  7. cout << "can" << endl;
  8. else
  9. cout << "cannot" << endl;
  10. return 0;
  11. }