<?php
include('flag.php');
highlight_file(__FILE__);

// Check if parameters 'tom' and 'jerry' are not equal
if ($_GET['tom'] != $_GET['jerry']) {
    echo 
"<br>Parameter 1 Met!<br>";

        if (
md5('ACECTF' $_GET['tom']) == md5('ACECTF' $_GET['jerry'])) {
        echo 
$FLAG;  // If the condition is true, print the flag
    
}
}
?>