<?php $a = explode(" ",trim(fgets(STDIN))); rsort($a); $c = $a[0]-$a[1]; if ($c <= 1) { echo $a[0]+$a[1]; }else { echo $c*2+$a[1]*2-1; } ?>