#include <arpa/inet.h>
#include <stdio.h>
#include <string.h>
#include <sys/socket.h>
#include <unistd.h>

int main(int argc, char** argv) {
  // 1. Create the socket
	
 
  // 2. Set the server address
	

  // 3. Connect to the server
	

  // 4. Send request
	

  // 5. Read response
	

  // 6. Clean up
	

  return 0;
}