Fill in the blаnk sо we cаn hаve A is equal tо B as the оutput 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 ====================================