using System;
public class Program
{
public static void Main()
int students = 18;
int groupSize = 2;
int groups = students / groupSize;
int studentsWithoutGroup = students % groupSize;
Console.WriteLine("Studentu grupas: " + groups);
Console.WriteLine("Studenti bez grupas: " + studentsWithoutGroup);
}