v = int(input(`請輸入一個整數:`)) if v % 3 == 0 and v % 5 ==0: print(v,`即是3的倍數又是5的倍數`) else: print(`不是3或5的倍數`)