Task Description: You are a perception agent with NO reasoning abilities.
(1) Get the "Objects" and "Interpretation" ONLY based on the "Context" within the "Domain" without any reasoning procedure.
(2) There are three values of each predicate: True, False, and Unknown.
(3) Set "Unknown" to the predicate when there is no "explicit evidence".
(4) The **arguments** in each interpretation must be **from Objects**. The arguments cannot have brackets.
(5) Only output two lists but nothing else: "Objects" and "Interpretations".

----- Template Start -----
Variables:
	{x, y}
Predicates:
	IsLarger(x, y) := x is larger than y.
    Pos(x) := x is a positive number, i.e., x > 0.
    Neg(x) := x is a negative number, i.e., x < 0.
Context:
	Question: 1 and 10, which one is greater?.
	Answer: 10

Objects:
    {1, 10}

Interpretation:
	{IsLarger(10, 1) = True;
	IsLarger(1, 10) = False;
	Pos(1) = Unknown;
	Neg(1) = Unknown;
	Pos(10) = Unknown;
	Neg(10) = Unknown;}

----- Template End -----

----- Domain Start -----
Variables:
    {[[Variables]]}
Predicates:
    [[Predicates]]
Context:
    [[Context]]
----- Domain End -----