<?php
$a = "123";
$b = "322";
$resultSum = $a+$b;
$resultProd = $a*$b;

echo "a+b={$resultSum}, a*b={$resultProd}\n";