blog report mới dành cho fcoj !!!
từ bây giờ mọi người gặp hành vi nào tiêu cực thì cứ report lên đây nhé :
https://fcoj.kodemy.site/blog/report-tieu-cuc-4079
...Xem thêm
đăng ký nhanh nhé !
hiện chỉ mới có 2 bạn đăng ký thôi nhé , phải đăng ký thì mới tham gia contest đc :
...Xem thêm
code bài số hoàn hảo
a=int(input())
tong=0
for i in range(1,a+1):
if a%i==0:
tong+=i
if tong==2*a:
print('YES')
else:
print('NO')
...Xem thêm
ưetryewtr
n=int(input())
t=0
for i in range(1,n//2+1):
if n%i==0:
t+=i
if t==n:
print('YES')
else:
print('NO')
...Xem thêm