blob: bbc0b57bc18b127ef541e47f78ca1c631927f13e (
plain)
1
2
3
4
5
6
7
8
9
|
import sys
import math
gray_wolves, black_wolves = [int(i) for i in input().split()]
# Write an answer using print
# To debug: print("Debug messages...", file=sys.stderr, flush=True)
print("answer")
|