18 lines
286 B
C#
Raw Permalink Normal View History

2025-02-24 11:16:57 +03:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleGit
{
internal class Program
{
static void Main(string[] args)
{
2025-02-24 11:26:55 +03:00
Console.WriteLine("Hi");
2025-02-26 09:41:51 +03:00
Console.WriteLine("Lolik and Bobik");
2025-02-24 11:16:57 +03:00
}
}
}