using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Program
{
    class Jatekos
    {
        public string Nev { get; set; }

        
        public Minta Minta = new Minta();
    }

    class Minta
    {
        public bool Nagysor { get; set; }
        public bool Kissor { get; set; }
        public bool Poker { get; set; }
        public bool Full { get; set; }
        public bool Terc { get; set; }
        public bool KetPar { get; set; }
        public bool EgyPar { get; set; }

        public bool AllTrue()
        {
            return Nagysor && Kissor && Poker && Full && Terc && KetPar && EgyPar;
        }
    }

    class Kor
    {
        public Jatekos jatekos { get; set; }

        public int[] dobasok { get; set; }

        public int[] dobasokFull { get; set; }
        public int[] dontesekFull { get; set; }
    }
}