'''
FILE DESCRIPTION: SOME WHILE LOOP
DATE:08/02/2022
AUTHOR:ERRIKOS NTINOS
STATUS: VERIFIED
'''
counter=0
total=0
number=input("Give me some random numbers,or give me '0' to exit ")
while number!=0:
    counter=counter+1
    total=total+number
    number=input("Give me some random numbers,or give me '0' to exit ")
print""
print "The total sum of the totally",counter ,"given numbers is :" , total
print""
print'Another fine script by Erik'
#print u"\N{COPYRIGHT SIGN}"

