#include<iostream> using namespace std; int main(){ int year,month,date; scanf("%d-%d-%d",&date,&year,&month); printf("%d-%d-%d",month,date,year); }