﻿from random import random
r=3 if random()**2<0.5 else -3
print(r)
