mirror of
https://github.com/wczffl-503/OI-Codes.git
synced 2025-05-10 16:20:27 +08:00
14 lines
148 B
C++
14 lines
148 B
C++
#include <iostream>
|
|
#include <iomanip>
|
|
using namespace std;
|
|
int main(){
|
|
char a[1000],c;
|
|
int b;
|
|
cin >>a>>b>>c;
|
|
a[b]=c;
|
|
cout <<a;
|
|
return 0;
|
|
}
|
|
|
|
|