First install the sshPass sudo apt-get install sshpass
Then create an alias in .bashrc file as
alias sshLogin='sshpass -p <your ssh password> ssh username@remote_host'
Now reload your changed .bashrc file by source ~/.bashrc
You are now done.
Now you can run the ssh using the above created alias sshLogin in terminal.