#!/usr/bin/python

import socket
s=socket.socket()
s.connect(('192.168.1.200',5888)) 
s.send('hihi')
s.close()


