##############################################################################
# Python From Scratch
# Autor: Nilo Ney Coutinho Menezes
# Editora Novatec (c) 2010-2024
# Site: https://pythonfromscratch.com
#
# File: listing\chapter 08\08.18 - Lambda function that takes more than one parameter.py
# Description: Lambda function that takes more than one parameter
##############################################################################
increase = lambda a, b: (a * b/100)
increase(100, 5)