sudo apt-get install sshpass
Create an executable file YOUR_FILE.sh, with the following content:
#!/bin/bash
sshpass -p "YOUR_PASSWORD" ssh -o StrictHostKeyChecking=no YOUR_USERNAME@SERVER_ADDRESS
Make it executable
sudo chmod +x <filename>
Now just execute:
./YOUR_FILE.sh