#!/usr/bin/python3
import json

def getProductName():
        with open('/etc/mining/config.json','r') as file:
                data = json.load(file)

        return data['machinename']


print(getProductName())