#include <iostream>
using namespace std;
int main() {
unsigned total_min;
cin >> total_min;
const auto d = total_min / 1440;
const auto h = total_min % 1440 / 60;
const auto m = total_min % 60;
cout << d << ' ' << h << ' ' << m << '\n';
}