Hello guys,
I have a flow that requires to run a couple of math functions as per the below:
* Take a long stored integer variable i.e. 123456
* Break the integer to individual digits and square each number individually i.e. 1^2, 2^2, 3^2, 4^2, 5^2, 6^2
* Sum the results all together to a new long integer
Any ideas how I can pull this one off?