Skip to content

Instantly share code, notes, and snippets.

@somratcste
Created May 21, 2018 06:48
Show Gist options
  • Save somratcste/d596a96fcc34469dedac9607a0554d25 to your computer and use it in GitHub Desktop.
Save somratcste/d596a96fcc34469dedac9607a0554d25 to your computer and use it in GitHub Desktop.
<?php
fscanf(STDIN, "%d %d", $number, $time);
for ($i = 1; $i <= $time; $i++) {
$lastDigit = $number % 10 ;
if($lastDigit != 0) {
$number -= 1;
} else {
$number /= 10;
}
}
echo $number;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment