Input
Output
<?php class StaticVariable { public static $a = 5; public static function main() { echo "Area of the square: " . (self::$a * self::$a) . "\n"; } } // Call the main method StaticVariable::main(); ?>