using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SomewhereIBelong { static class Constants { public const int vertexCount = 10001; public const int weightMin = 1; public const int weightMax = 200; public const int weightStep = 1; } }