Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- static void Main()
- {
- int MyAge = 24;
- int Ten = 10;
- int Age = MyAge + Ten;
- string PrintText = "This is my age after ten years";
- Console.WriteLine(PrintText + ":" + " " + Age);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement