#!/usr/bin/env python3
import random
import sys

random.seed(int(sys.argv[1]))
print("send\n" + str(random.randint(1, 600)))
