ye olde prng

We get that the numbers are generated by squaring the number and taking the middle digits or something?

script below:

n = int(input())
print(str(n**2)[50:-50])

flag: rgbCTF{d0nt_us3_midd13_squ4r3}

Last updated