I got these values from server:
34.22.123
81.59.345
I would like to convert these values
The example you have given, already are latitude/longitude coordinates. There are many such lat,lon formats, what you want are lat/long coordinates in decimal degrees, probably with a sign to denote N/S or E/W.
Use the formula above: (Degrees+(minutes/60)+(seconds/3600)
)
and multiply latitude with -1 when S is given.
Multiply longitude by -1 when "W" is given.