#!/usr/bin/env python # -*- coding: utf-8 -*- i = 1 num = 0 while i < 101: num = num + i print(num) #print(i) i = i + 1