<?php $_fp = fopen("php://stdin", "r"); /* Enter your code here. Read input from STDIN. Print output to STDOUT */ $firstLine = fgets($_fp); $candles = explode(" ", fgets($_fp)); echo array_count_values($candles)[max($candles)]; ?>