Create a function which takes two strings (p1 and p2 — which represent player 1 and 2) as arguments and returns a string stating the winner in a game of Rock, Paper, Scissors.
Each argument will contain a single string: "Rock", "Paper", or "Scissors". Return the winner according to the following rules:
If p1 wins, return the string "The winner is p1". If p2 wins, return the string "The winner is p2" and if p1 and p2 are the same, return "It's a draw".
rps("Rock", "Paper") ➞ "The winner is p2"
rps("Scissors", "Paper") ➞ "The winner is p1"
rps("Paper", "Paper") ➞ "It's a draw"
All inputs will be valid strings.