#include<iostream>
#include<iomanip>
using namespace std;
class A{
    public:
    static void display(int hr [], int task[], int n){
        double hours = 0;
        double ts = 0;
        for(int i=0; i<n; i++){
            hours += task[i];
        }

    }
}