2.14 複素数を使用する

use Math::Complex;
my $a = Math::Complex->new(3,5);
my $b = Math::Complex->new(2,-2)
my $c = $a * $b;