Client-Server in Java with AWT and Java 2D
Application for adding two numbers. The operation of adding itself is processed on Server side which takes two numbers as input and gives the result as an output.
Client side consists of two input fields for two numbers, button for starting the adding process, and one field for showing the result.
Server side accepts two numbers from client, adds them, and then sends the result back to client side.