#!/usr/bin/python3

import argparse
import crypt

passwd='yahooo'

print(crypt.crypt(passwd, crypt.mksalt(crypt.METHOD_SHA512)))

