diff --git a/solutions/python/270A.py b/solutions/python/270A.py new file mode 100644 index 0000000..42b1882 --- /dev/null +++ b/solutions/python/270A.py @@ -0,0 +1,11 @@ +import sys + +t = int(input()) + +for _ in range(t): + a = int(input()) + exterior = 180-a + if 360 % exterior == 0: + print("YES") + else: + print("NO")