Run ID:5079
提交时间:2024-11-02 10:11:04
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int a,b,c; scanf("%d-%d-%d",&a,&b,&c); printf("%d-%d-%d",a,c,b); return 0; }