using System;
using System.IO;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Collections.Generic;
using System.Diagnostics;
using Enu = System.Linq.Enumerable;

public class Program
{
    static readonly long[][] Nums = 
    {
      new long[] { 1, 0 },
      new long[] {  31 ,2147483647                    },
      new long[] {  465, 64424509410                  },
      new long[] {  4495, 934155386445                },
      new long[] {  31465, 8718783606820              },
      new long[] {  169911, 58851789346035            },
      new long[] {  736281, 306029304599382           },
      new long[] {  2629575, 1275122102497425         },
      new long[] {  7888725, 4371847208562600         },
      new long[] {  20160075, 12569060724617475       },
      new long[] {  44352165, 30724370660176050       },
      new long[] {  84672315, 64521178386369705       },
      new long[] {  141120525, 117311233429763100     },
      new long[] {  206253075, 185742786263791575     },
      new long[] {  265182525, 257182319442172950     },
      new long[] {  300540195, 312292816465495725     },
      new long[] {  300540195, 333112337563195440     },
      new long[] {  265182525, 312292816465495725     },
      new long[] {  206253075, 257182319442172950     },
      new long[] {  141120525, 185742786263791575     },
      new long[] {  84672315, 117311233429763100      },
      new long[] {  44352165, 64521178386369705       },
      new long[] {  20160075, 30724370660176050       },
      new long[] {  7888725, 12569060724617475        },
      new long[] {  2629575, 4371847208562600         },
      new long[] {  736281, 1275122102497425          },
      new long[] {  169911, 306029304599382           },
      new long[] {  31465, 58851789346035             },
      new long[] {  4495, 8718783606820               },
      new long[] {  465, 934155386445                 },
      new long[] {  31, 64424509410                   },
      new long[] {  1, 2147483647                     },
    };

    public void Solve()
    {
        int X = Reader.Int();
        if (X >= 32) { Console.WriteLine("0 0"); return; }
        Console.WriteLine(Nums[X][0] + " " + Nums[X][1]);
    }
}

class Entry { static void Main() { new Program().Solve(); } }
class Reader
{
    static TextReader reader = Console.In;
    static readonly char[] separator = { ' ' };
    static readonly StringSplitOptions op = StringSplitOptions.RemoveEmptyEntries;
    static string[] A = new string[0];
    static int i;
    static void Init() { A = new string[0]; }
    public static void Set(TextReader r) { reader = r; Init(); }
    public static void Set(string file) { reader = new StreamReader(file); Init(); }
    public static bool HasNext() { return CheckNext(); }
    public static string String() { return Next(); }
    public static int Int() { return int.Parse(Next()); }
    public static long Long() { return long.Parse(Next()); }
    public static double Double() { return double.Parse(Next()); }
    public static int[] IntLine() { return Array.ConvertAll(Split(Line()), int.Parse); }
    public static int[] IntArray(int N) { return Range(N, Int); }
    public static int[][] IntTable(int H) { return Range(H, IntLine); }
    public static string[] StringArray(int N) { return Range(N, Next); }
    public static string[][] StringTable(int N) { return Range(N, () => Split(Line())); }
    public static string Line() { return reader.ReadLine().Trim(); }
    static string[] Split(string s) { return s.Split(separator, op); }
    static T[] Range<T>(int N, Func<T> f) { var r = new T[N]; for (int i = 0; i < N; r[i++] = f()) ; return r; }
    static string Next() { CheckNext(); return A[i++]; }
    static bool CheckNext()
    {
        if (i < A.Length) return true;
        string line = reader.ReadLine();
        if (line == null) return false;
        if (line == "") return CheckNext();
        A = Split(line);
        i = 0;
        return true;
    }
}