using C=System.Console;class M{static void Main(){int i=int.Parse(C.ReadLine());C.WriteLine(i%3<1?new string('2',i/3):"0");Main();}}