using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Conversii { class Program { static void Main(string[] args) { int x; long y = 10000000000; double z; x = (int)y; z = y; Console.WriteLine(x + ", " + y + ", " + z); y = x; Console.WriteLine("y = " + y); string a = x + "" + y; Console.WriteLine(a); a = x / 10 + "" + y / 10; //x = Int32.Parse(a); //y = Int32.Parse(a); x = (int)Int64.Parse(a); y = Int64.Parse(a); Console.WriteLine(x + ", " + y); } } }