#Trace the following program: def main(): i=5 s = 0 while(i<=10): if(i%3 == 0): s = s - i i=i+1 print(s) main()