using System; namespace No294{ public class Program{ public static void Main(string[] args){ var N = int.Parse(Console.ReadLine()); var cnt = 0; for(var i = 1; i < 114514810; i++){ for(var j = 0; j < 1 << i; j++){ var pc = Ex.PopCount(j) + 1; if((pc * 5 + (i - pc) * 3) % 3 == 0){ cnt++; } if(cnt == N){ Console.WriteLine((Convert.ToString(j, 2).PadLeft(i, '0') + 5).Replace('0', '3').Replace('1', '5')); return; } } } } } public class Ex{ public static int PopCount(int x){ //From http://turedure-plog.blogspot.jp/2014/03/popcount.html x = x - (x >> 1 & 0x55555555); x = (x & 0x33333333) + (x >> 2 & 0x33333333); x = x + (x >> 4) & 0x0f0f0f0f; x = x * 0x01010101; return x >> 24; } } }