using System;
//csc what_is_int.cs
class test
 { 
  public static void Main()
  { 
    int i = 10;
    double j = 10.4;
    object o = i;
    Console.WriteLine(o.ToString());
    Console.WriteLine(j);
    
  }
  }