#!/usr/bin/env python
import socket
import struct
IP="172.16.184.152"
PORT=2998
# Create client socket and connect to the IP/PORT
s1 = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s1.connect((IP, PORT))
#x Receive data from the server
data = s1.recv(2048)
number = struct.unpack("