v = int(input('请输入一个整数:'))
if v % 3 == 0 and v % 5 ==0:
print(v,'即是3的倍数又是5的倍数')
else:
print('不是3或5的倍数')
05-11 13:26