fork download
  1.  
  2. using System;
  3.  
  4.  
  5. public class Test
  6. {
  7.  
  8. public static void Main()
  9. {
  10. int n = int.Parse(Console.ReadLine());
  11. int a = (int)Math.Pow(n,2);
  12. int[] nums = new int[a];
  13. Console.WriteLine(nums.Length);
  14.  
  15. }
  16.  
  17. }
Success #stdin #stdout 0.01s 131648KB
stdin
10
stdout
100