using System; using System.Collections.Generic; using System.Linq; using System.Numerics; using static System.Math; namespace SortItems { class Program { static void Main(string[] args) { var n = int.Parse(Console.ReadLine()); var s = ""; var cnt = 0; for (var i = 1; i <= n; i++) { if (i % 3 == 0 & i % 5 == 0) { cnt += 4; } else if (i % 5 == 0) { cnt += 2; } else if (i % 3 == 0) { cnt += 2; } } Console.WriteLine(cnt); } } }