Write a Java Socket Programs to create simple server and client with the following functionalities
In the client program, read two integer number and operation to be performed and send it to server.
Operation can be any one of the following (Addition, Subtraction, Multiplication, Division, Exit)
Send corresponding value (1-4) to server program
In the server program, perform the corresponding operation based on the value received and return the result to the client program
Display the result in the client program.
Repeat the steps b-e till the client presses 5.