Your st variable is essentially your speed. You are increasing it by one each frame. Also, cos and sin take the angle in radians, not degrees. So you are giving it 1 radian, then 2 radians, then 3, 4, 5, 6, and at 7 you would be around the circle since 360 degrees = 1 Tau (or 2 Pi). So, every 6.28 frames, you are going around the circle.
First you need to correct that by converting your degree into radians, or work in radians. I always create a header file that contains mathematical constants and conversions I will need. One is DegreesToRadians and the other is RadiansToDegrees. You can easily find these values.
So, if you want to control your speed, you should be acting on st or replace st with your speed.