//RPS PSEUDOCODE BEGIN SET gestures to [Rock,Paper,Scissors] INPUT u DISPLAY "Player chose" gesture u SET c to random(0..2) DISPLAY "Computer chose" gesture c IF (p=c) THEN OUTPUT "It was a DRAW" ELSEIF (r-s or p-r or s-p) OUTPUT "PLAYER Wins ELSE OUTPUT "COMPUTER Wins" ENDIF END