solutions: 270A

This commit is contained in:
Muhammad Nauman Raza 2025-01-15 13:37:37 +00:00
parent bb90dfe5b7
commit 22b20ec00c
Signed by: devraza
GPG key ID: 91EAD6081011574B

11
solutions/python/270A.py Normal file
View file

@ -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")