Programming/Algorithm
[Python] 백준 10930번 : SHA-256
TCBE
2020. 11. 11. 06:45
import hashlib
a = input()
print(hashlib.sha256(a.encode()).hexdigest())