using System; namespace MyApplication { class Program { static void Main(string[] args) { int x = 10; x += 5; Console.WriteLine(x); } } }