Run ID:5073

提交时间:2024-11-02 10:05:10

# include <cstdio> using namespace std; int main(){ int d, m, y; scanf("%d-%d-%d",&d,&y,&m); printf("%d-%d-%d",m,d,y); return 0; }