using System;
public class Program
{
public static void Main()
for (int x = 0; x <= 100;x++){//цикл і його умова
if (x % 4 == 0 && x % 3 == 0 || x % 5 == 0){//умова
Console.WriteLine(x);//виведе на екран зміну
}