#include typedef unsigned long long ll; #define INF 1000000000 using namespace std; void solve(string s,int a,int b){ char tmp; tmp=s[a]; s[a]=s[b]; s[b]=tmp; cout<>s>>a>>b; solve(s,a,b); }