main():int { i:int = 0; n:int = 10; sum:int = 0; while (i < n) { sum = sum + i i = i + 1 } return sum } //@PRACOWNIA //@out Exit code: 45