The core statement of the solution is:
number = number + 10;
using System; class Program{/*from w w w . j av a2s .com*/ static void Main(string[] args){ // Input Console.Write("Enter a number: "); string input = Console.ReadLine(); int number = Convert.ToInt32(input); // Calculation number = number + 10; // Result output Console.WriteLine("Number ten more greater is: " + number); } }