use v6; my $n = get().chomp; my $ans3 = ($n / 5).Int; my $ans5 = ($n / 3).Int; say ($ans3 + $ans5) * 2; exit;