#! /usr/bin/env python

import sys
import socket

sock=socket.socket()
sock.connect((sys.argv[1], int(sys.argv[2])))

while 1:
  pass
