Fill in the blank so we can have A is equal to B  as the out…

Fill in the blank so we can have A is equal to B  as the output when we run it! ====================================SCRIPT STARTS HERE ====================================#include int main() { int A = 10, B = 10; if (A   [     ]   B) {     printf(“A is equal to B”);} else if (A > 0) {     printf(“A is larger than B”);} else {     printf(“B is larger than A”);} getchar();     return 0; } ==========================SCRIPT ENDS HERE ====================================