Create a hot and cold game in Matlab to find a point in an (X,Y)2D coordinate plane. The user answers two inputs: x=Input('x')y=Input('y'). THE INPUTS WILL ONLY BE INTEGERS FROM 0 TO100. This means no negative numbers. You write the programso the computer plays the game. The computer must play the game(comparing distances only) and give the same point as the userinputs. To keep it simple the code will check distances untildistance = 0 (right on the point). certain section can beeliminated by comparing distances. You will use mostly loops andif-then statements. ONLY PROMPT THE USER TO INPUT THE \"SECRET\" XAND Y LOCATION once. THE COMPUTER WILL FIND THE POINT. DO NOT KEEPPROMPTING THE USER TO KEEP GUESSING.