Exemple #1
0
import sys

try:
    import frosch

    frosch.hook()
except ImportError:
    pass


def debug(*a, **kw):
    print("\033[33m", *a, "\033[0m", **dict(file=sys.stderr, **kw))


def solve():
    a = [int(x) for x in sys.stdin.readline().split()]
    a.sort()
    s = sum(a)
    if a[0] == a[1]:
        return a[2]
    if a[1] == a[2]:
        return a[0]
    if a[0] == a[2]:
        return a[1]
    return 0


print(solve())
Exemple #2
0
    License MIT

"""

import os
import sys

from bullet import Bullet, Check, Input, VerticalPrompt
from simple_parsing import ArgumentParser

from frosch import hook

from .generator import generate
from .options import Options

hook()


def run_cli() -> Options:
    """
    Run CLI and return options
    """

    cli = VerticalPrompt(
        [
            Input("Project Name? ", default="latex_project", strip=True),
            Bullet(
                "Which template to use?",
                choices=[
                    t
                    for t in os.listdir("./latex_up/templates") if "." not in t