Develop a “Remote Calculator” application that works as follows:The client program inputs two integers and an arithmetic operation(‘*’,’/’,’%’,’+’,’-‘) from the user and sends these three values tothe server side. The server does the binary operation on the twointegers and sends backs the result of the operation to the client.The client displays the result to the user.
use python to do this, write the code for the server and clientand run both. please add some SCREENSHOTS showingthe working of both. thanks
Answer