lambdas/add/add.py [17:28]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
   print(f"RESULT: {result}")
   
   response = {
       "first": first,
       "second": second,
       "third": third,
       "result": int(result)
   }
   
   event['input'] = response
   
   return event['input']
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



lambdas/divide/divide.py [14:25]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
   print(f"RESULT: {result}")
   
   response = {
       "first": first,
       "second": second,
       "third": third,
       "result": int(result)
   }
   
   event['input'] = response
   
   return event['input']
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



