我希望第一个输出是“输入进程1的突发时间”,而不是“进程0”。我该怎么做?
num = int(input('Enter the number of processes: '))
for i in range(num):
b = input('Enter the burst time of process ' + str(i) + ': ')
a = input('Enter the arrival time of process ' + str(i) + ': ')