Why should the efficiency by slower?
If you do the conversion automatically or manually, it is absolutly the same. You just need to type less code.
A Scalar Variable in perl itself can hold many different values. Internaly in the interpreter he does a conversion and saves the number in the scalar.
The number will be saved until you change the value. You can see such internal things with Devel::Peek
#!/usr/bin/env perl
use Devel::Peek;
my $value = '15';
Dump($value);
$value + 5;
Dump($value);
$value = 5;
Dump($value);
Output:
SV = PV(0x8f71040) at 0x8f82d88
REFCNT = 1
FLAGS = (PADMY,POK,pPOK)
PV = 0x8f7ecb8 "15"\0
CUR = 2
LEN = 4
SV = PVIV(0x8f7a2fc) at 0x8f82d88
REFCNT = 1
FLAGS = (PADMY,IOK,POK,pIOK,pPOK)
IV = 15
PV = 0x8f7ecb8 "15"\0
CUR = 2
LEN = 4
SV = PVIV(0x8f7a2fc) at 0x8f82d88
REFCNT = 1
FLAGS = (PADMY,IOK,pIOK)
IV = 5
PV = 0x8f7ecb8 "15"\0
CUR = 2
LEN = 4
Here you can see that a Scalar Value (SV) has "15" the string as (PV), after doing an addition it adds (IV) (Integer Value).
perl saves Flags to knew which value is correct. For example in the first dump you see the Flag "POK" that says "PV" is correct, if you ask for this value, perl knew that he don't need to do a conversion and the value is correct.
After the addition you see "IOK" that says "IV" value is also okay.
After changing the value to 5 you see that "POK" is not set anymore. It invalidates the PV value. So if you call the string value, he needs to recalculate/convert the string from the IV.