| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 222580 | errorgorn | Popcount (COCI19_popcount) | C++14 | 0 ms | 0 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
n,k=map(int,input().split(" "))
print(k)
for i in range(1,k+1):
print("A=((A+((A>>"+str(i)+")&1))-(A&"+str(2**i)+"))")
