#include bool isLeapYear(int y) { if(y % 400 == 0) return true; if(y % 100 == 0) return false; if(y % 4 == 0) return true; return false; } int main(void) { using namespace std; int Y, N, D; cin >> Y >> N >> D; int L; L = 365 + (isLeapYear(Y + 1) ? 1 : 0); cout << max(N - D, 0) << ' ' << min(L - D, N) << '\n'; return 0; }