Run id: 139634

Main.cc:1:1: error: 'tt' does not name a type
 tt = int(input()) for _ in range(tt): year = int(input()) if (year % 4 == 0 and year % 100 != 0) or (year % 400 == 0): print("Yes") else: print("No")
 ^