Run ID:142191
提交时间:2026-01-01 15:50:35
#写法一 n=int(input()) if n%3==0 and n%5==0: #百分号表示求余 //:表示取整 print("can") else: print("cannot")