Hacker News new | ask | show | jobs
by Bootvis 531 days ago
Python:

    [x**2 for x in range(32,100) if x**2 // 100 + x**2 % 100 == x]
    [2025, 3025, 9801]