#returnerer tid, temp, altså første, så andre linje i real_cup.txt
def les_real_cup():
    with open('real_cup.txt', 'r') as file:
        tid = [float(x) for x in file.readline().split()]
        temp = [float(x) for x in file.readline().split()]

    return tid,temp