Files
ICSP1-Works/week7/Exercises/ex1.py
2026-04-20 09:35:37 +08:00

15 lines
230 B
Python

def main():
print('==Exercise 1==')
counter=0
total=0
while counter<100:counter+=1;total+=counter
print(f"Total: {total}")
print('==End Of Ex1==')
return 0
if __name__ == '__main__':
main()