Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- class HowOldAreYou
- {
- static void Main()
- {
- string ages = Console.ReadLine();
- int age = int.Parse(ages);
- Console.WriteLine("After 10 years, you are " + (age + 10) + " years old");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment