Advertisement
VelizarAvramov

07. Greeting

Nov 14th, 2019
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.38 KB | None | 0 0
  1. using System;
  2.  
  3. namespace _07._Greeting
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             string firstName = Console.ReadLine();
  10.             string lastName = Console.ReadLine();
  11.             int age = int.Parse(Console.ReadLine());
  12.  
  13.             Console.WriteLine($"Hello, {firstName} {lastName}. You are {age} years old.");
  14.         }
  15.     }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement