# This program is written in Python 3.6 language. Copy the lines below to file "program.py"
# On an windows machine and with python 3.6 installed and directory on %PATH% variable
# just run "python program.py" on command line

# For linux machines, install python on the machine, make copy the above lines to file "program.py"
# In the terminal execute the program with "python program.py"

# Again, make sure using python 3.6. Some sintax may change between versions.


for i in range(1,101):				#Loop from 1 to 100.
	if  i%3 == 0:					#Verifies if the variable i is multiple of 3 (which appens more often than 5)
		if i%5 == 0:				#Verifies if is multiple of 5 and 3				
			print ("LoktarOgar")	#Print "LoktarOgar" if true
		else:
			print ("Loktar")		#Print "Loktar" if is just multiple of 3
	elif i%5 == 0:					#Verifies if is multiple of 5 
		print ("Ogar")				#Print "Ogar" if is multiple of 5
	else: print (i)				
	
	
	#Other Case, prs the number
	
	
	
	
	
	
	
	
	
	
	