'''
Welcome to GDB Online.
GDB online is an online compiler and debugger tool for C, C++, Python, Java, PHP, Ruby, Perl,
C#, VB, Swift, Pascal, Fortran, Haskell, Objective-C, Assembly, HTML, CSS, JS, SQLite, Prolog.
Code, Compile, Run and Debug online from anywhere in world.
'''
def group1():
x=0
grp1=[0]*5
print ('Hello World')
while(x<5):
print (x)
print ("Enter Name")
grp1 [x]=input()
x=x+1
return(grp1)
y=group1 ()