using System;
using System.Linq;
using System.Collections.Generic;
class Program
{
///
/// プログラムのエントリポイント
///
///
static void Main(string[] args)
{
long max = long.Parse(Console.ReadLine());
long result = max / 3;
result += max / 5;
result *= 2;
Console.WriteLine(result);
}
}