<?php
$input = "4 7";

$nums = explode(" ", $input);

$garry = $nums[1]-1;
$larry = $nums[0]-1;
$result = $garry . " " . $larry;

echo $result;