#!/usr/bin/python3
import json

def getProductId():
        with open('/etc/mining/config.json','r') as file:
                data = json.load(file)
        return data['machineid']


print(getProductId())