Run ID:120244

提交时间:2025-05-24 20:27:53

n = int(input()) if n%3==0: if n%5==0: print("can") else: print("cannot") else: print("cannot")