#include <iostream>
using namespace std;

int main() {
	float temp[31][24];
	float max = -100;
	
	for (int day = 0; day < 31; day++)
	for (int hour = 0; hour < 24; hour++)
	if (temp[day][hour] > max)
	max = temp[day][hour];
	cout << "The highest tempeture was " << max << endl;
	return 0;
}