[Python] codeforces #652 A. FashionabLee 작성일 2020-06-28 | In Algorithm | A. FashionabLee 문제 링크 https://codeforces.com/problemset/problem/1369/A 풀이 코드 12345678910111213# A. FashionabLee import sys input = sys.stdin.readline t = int(input()) for i in range(t): n = int(input()) if n % 4 == 0: print('YES') else: print('NO') 비고