using System;
namespace ConcatenateData
{
internal class Program
{
static void Main(string[] args)
{
string firstName = Console.ReadLine();
string lastName = Console.ReadLine();
int age = int.Parse(Console.ReadLine());
string town = Console.ReadLine();
Console.WriteLine($"You are {firstName} {lastName}, a {age}-years old person from {town}.");
}
}
}
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)