int=int(input("请输入一个数:"))if (int%3==0 and int%5==0): print("{}能同时被3和5整除".format(int))else: print("{}不能同时被3和5整除".format(int))