SHARE
TWEET
Untitled
a guest
Jan 29th, 2018
55
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
- using System;
- namespace ConsoleApp2
- {
- class Program
- {
- static void Main(string[] args)
- {
- int n = int.Parse(Console.ReadLine());
- for (int i = 1; i <=n; i++)
- {
- for (int j = 0; j <i; j++)
- {
- Console.Write($"{i} ");
- }
- Console.WriteLine();
- }
- }
- }
- }
RAW Paste Data

