N=gets.chomp.to_i def zfizz(n) n3 = (n / 3).to_i n5 = (n / 5).to_i return (n3 + n5) * 2 end puts zfizz(N)