Run ID:128528
提交时间:2025-08-18 09:47:05
n = int(input()) if n % 5 == 0: if n % 3 == 0: print('can') else: print('cannot') else: print('cannot')