Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Numerics;
- namespace Demo
- {
- class Program
- {
- static void Main(string[] args)
- {
- string firstName = Console.ReadLine();
- string secondName = Console.ReadLine();
- byte age = byte.Parse(Console.ReadLine());
- char gender = char.Parse(Console.ReadLine());
- long personalId = long.Parse(Console.ReadLine());
- BigInteger employeeNumber = BigInteger.Parse(Console.ReadLine());
- Console.WriteLine($"First name: {firstName}");
- Console.WriteLine($"Last name: {secondName}");
- Console.WriteLine($"Age: {age}");
- Console.WriteLine($"Gender: {gender}");
- Console.WriteLine($"Personal ID: {personalId}");
- Console.WriteLine($"Unique Employee number: {employeeNumber}");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment