#!/usr/bin/env python3
import os
def reboot_system():
os.system('reboot')
if __name__ == "__main__":
reboot_system()