An expression is given. The given expression will give a wrong output. Correct the expression by replacing the operator by +,-,/,* so that the expression yields a correct output.
Sample Input1:
5-2=10
Sample Output1:
5*2=10
Sample Input2:
40+2=20
Answers
Answered by
0
Answer:
Input1: *
Input 2: /
Explanation:
Input 1:
5*2=10
Input 2:
40/2=20
Similar questions