import random


class Main:

    def __init__(self):
        self.templ1 = ("aaa", "bbb", "ccc")
        self.templ2 = ("ddd", "eee", "fff")

    def Template1(self):
        templ1_random =random.choice(self.templ1)
        return templ1_random

    def Template2(self):
        templ2_random = random.choice(self.templ2)
        return templ2_random

    def All(self):
        list0 = [self.Template1(), self.Template2()]
        all_random = random.choice(list0)
        return all_random


final = Main()
print(final.All())