name = input("Name : ") checksum = 0 for char in name: checksum = checksum + ord(char) print("Checksum:", checksum)