Submission #622666

#TimeUsernameProblemLanguageResultExecution timeMemory
622666KK_1729Utrka (COCI14_utrka)Cpython 3
Compilation error
0 ms0 KiB
n = int(input())
o = {}
for _ in range(n):
 	a = input()
 	if o.get(a):o[a] += 1
	
    
	else:
      o[a] = 1
     

    
    
    
    
for _ in range(n-1):
  a = input()
  o[a] -= 1

for key, value in o.items():
  if value:print(key)

Compilation message (stderr)

Sorry: TabError: inconsistent use of tabs and spaces in indentation (utrka.py, line 8)