lambdas/add/add.py [6:13]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
def lambda_handler(event, context):
   print(event)
   first = event['input']['first']
   second = event['input']['second']
   third = event['input']['third']
   result = event['input']['result']
   
   print(f"FIRST: {first}, SECOND: {second}, THIRD: {third}")
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



lambdas/divide/divide.py [3:10]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
def lambda_handler(event, context):
   print(event)
   first = event['input']['first']
   second = event['input']['second']
   third = event['input']['third']
   result = event['input']['result']
   
   print(f"FIRST: {first}, SECOND: {second}, THIRD: {third}")
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



