PHP program to compute the digit number of sum of two given integers.

bookmark

<?php
 while(true) {
    $inputs = explode(' ', trim(fgets(STDIN))); 
    if (!is_array($inputs) || count($inputs) < 2) {
        exit;
    } 
    $a = $inputs[0];
    $b = $inputs[1]; 
    $d = numDigits($a + $b);
    echo("Digit number of sum of two given integers: ");
    echo $d . "\n";

function numDigits($n) {
    return (int)(log10($n) + 1);
}
?>


Output:

Digit number of sum of two given integers: 2