Run ID:144804
提交时间:2026-01-24 18:53:27
#include<bits/stdc++.h> using namespace std; int main(){ int t; scanf("%d", &t); if(t%3==0&&t%5==0)cout<<"can"<<endl; else cout<<"cannot"<<endl; return 0; }