if you use the integer pragmatic module then the division operator gives an integer quotient, dropping any decimal portion.
...
use integer;
my $quotient = 94 / 5;
print "quotient = $quotient\n";
...
this will give the output:
quotient = 18
*** note, if you want the remainder, yes like in elementary school, you can use the modulus "%" operator