U209377 图像旋转
#include<bits/stdc++.h>
using namespace std;
int n,m,a[1005][1005];
int main(){
cin>>n>>m;
for(int i=1;i<=n;i++){
for(int j=1;j<=m;j++){
cin>>a[i][j];
}
}
for(int o=1;o<=m;o++){
for(int j=1;j<=n;j++){
cout<<a[i][j];
}
cout<<"/n";
}
return 0;
}