n=int(input()) if n%3==0 and n%5==0: print("can",end="") else: print("cannot",end="")
Main.cc:1:1: error: 'n' does not name a type n=int(input()) ^