import std.stdio, std.conv, std.string, std.range, std.math, std.bigint, std.algorithm; void main() { auto N = readln.strip.to!long; (N / 30 * 32 + 1.iota(N % 30 + 1).map!"a%15==0?4:a%3==0?2:a%5==0?2:0".sum).writeln; }