Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace Matrix_Calculations
- {
- class Program
- {
- static void Main(string[] args)
- {
- string[] Name = Console.ReadLine().Split(new char[] { ' ' });
- for(int i = 0; i < Name.Length; i++)
- {
- Console.WriteLine(Name[i]);
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment