Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace Loops
- {
- class Program
- {
- static void Main(string[] args)
- {
- int n = int.Parse(Console.ReadLine());
- int l = int.Parse(Console.ReadLine());
- for (int a = 1; a <= n; a++)
- {
- for (int b = 1; b <= n; b++)
- {
- for (char c = 'a'; c < 'a' + l; c ++)
- {
- for (char d = 'a'; d < 'a' + l; d++)
- {
- for (int e = 1; e <= n; e++)
- {
- if (e >= a + b)
- {
- Console.Write($"{a}{b}{c}{d}{e} ");
- }
- }
- }
- }
- }
- }
- Console.WriteLine();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement