Advertisement
desislava_topuzakova

Untitled

Apr 18th, 2020
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. using System;
  2.  
  3. namespace first_steps {
  4. class FirstProblem {
  5. static void Main (string[] args) {
  6. string firstName = Console.ReadLine();
  7. string lastName = Console.ReadLine();
  8. int age = int.Parse(Console.ReadLine());
  9. string town = Console.ReadLine();
  10. Console.WriteLine($"You are {firstName} {lastName}, a {age}-years old person from {town}.");
  11. }
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement