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)
- {
- sbyte first = sbyte.Parse(Console.ReadLine());
- byte second = byte.Parse(Console.ReadLine());
- short third = short.Parse(Console.ReadLine());
- int fourth = int.Parse(Console.ReadLine());
- uint fifth = uint.Parse(Console.ReadLine());
- long sixt = long.Parse(Console.ReadLine());
- BigInteger seventh = BigInteger.Parse(Console.ReadLine());
- Console.WriteLine($"{first}");
- Console.WriteLine($"{second}");
- Console.WriteLine($"{third}");
- Console.WriteLine($"{fourth}");
- Console.WriteLine($"{fifth}");
- Console.WriteLine($"{sixt}");
- Console.WriteLine($"{seventh}");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment