using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { var n = int.Parse(Console.ReadLine()); var sb = new StringBuilder(); if (n == 0) sb.Append("0"); while (n > 0) { sb.Insert(0, n % 7); n /= 7; } Console.WriteLine(sb.ToString()); } } }