using System;
using System.Collections.Generic;
using System.Linq;
using System.Text.RegularExpressions;
namespace Rextester
{
public class Program
public static void Main(string[] args)
for(int i = 10; i < 100; i++)
if(i % 4 == 0 && i % 6 != 0)
Console.WriteLine(i);
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text.RegularExpressions;
namespace Rextester
{
public class Program
{
public static void Main(string[] args)
{
for(int i = 10; i < 100; i++)
if(i % 4 == 0 && i % 6 != 0)
Console.WriteLine(i);
}
}
}