#include #define REP(i, n) for(int i = 0; i < n; i++) #define REPR(i, n) for(int i = n; i >= 0; i--) #define FOR(i, m, n) for(int i = m; i < n; i++) #define INF 2e9 #define ALL(v) v.begin(), v.end() using namespace std; typedef long long ll; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); string s; cin >> s; int y, m, d; y = atoi(s.substr(0, 4).c_str()); m = atoi(s.substr(5, 2).c_str()); d = atoi(s.substr(8, 2).c_str()); struct tm ymd = {0, 0, 0, d, m - 1, y - 1900}; time_t t = mktime(&ymd); t += 2 * 24 * 60 * 60; struct tm *ymd_2d = localtime(&t); char ans[81]; strftime(ans,sizeof(ans),"%Y/%m/%d", ymd_2d); cout << ans << endl; }