[ create a new paste ] login | about

Link: http://codepad.org/RApo1TNw    [ raw code | output | fork ]

Perl, pasted on Sep 1:
1
2
3
4
5
6
$a=5999856;
$b=99992800;
$c=100000000;
if ($a*$a*$a+$b*$b*$b==$c*$c*$c) {
  printf "%d^3 + %d^3 = %d^3\n", $a, $b, $c;
}


Output:
1
5999856^3 + 99992800^3 = 100000000^3


Create a new paste based on this one


Comments: