본문 바로가기

Programming/Algorithm

[Python] 백준 10930번 : SHA-256


import hashlib
a = input()
print(hashlib.sha256(a.encode()).hexdigest())