summaryrefslogtreecommitdiff
path: root/MedicalParity.cs
blob: 2d612e160ce261cec408293f4071d23ad30cd886 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;

namespace Codeforces_BS;

internal class MedicalParity
{
    static void Main(string[] args)
    {
        for (var i = 0; i < 10; i++)
        {
            Console.WriteLine("Hello Again!");
        }
    }
}