Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@Naba0123
Created September 19, 2015 07:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Naba0123/97cd8818d8450d83fc1b to your computer and use it in GitHub Desktop.
Save Naba0123/97cd8818d8450d83fc1b to your computer and use it in GitHub Desktop.
POH! 6
<?php
// 緑川つばめ
$input = trim(fgets(STDIN));
$result = $input;
$result += floor($input / 10);
$result += $input % 10;
echo "{$result}\n";
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment