fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. int def_val = 2;
  8. int num = 0;
  9.  
  10. if(int.TryParse(Console.ReadLine(), out num) && num >= 1 && num <= 15)
  11. {
  12. Console.WriteLine(Convert.ToInt64(Math.Pow(Math.Pow(def_val, num) + 1, def_val)));
  13. }
  14. else
  15. {
  16. Console.WriteLine("허용된 숫자만 입력하세요~!!");
  17. }
  18. }
  19. }
  20.  
Success #stdin #stdout 0.04s 30368KB
stdin
15
stdout
1073807361