console.info('running step2 package');letinput=act.get('input');// get the input value, it should be 110
// the value is calculated by step1
console.log(`getinput=${input}`);// add 10 to the input
// in the end, the input should be 120
act.set('input', input+10);