Run ID:113070

提交时间:2025-03-15 11:34:28

#include<bits/stdc++.h> using namespace std; string s; int main(){ cin>>s; int a; int len=s.size(); for(int i=0;i<len;i++){ a=1; for(int j=0;j<len;j++){ if(i!=j &&s[i]==s[j]){ a++; break; } } if(a==1){ cout<<s[i]<<endl; return 0; } } cout<<"no"<<endl; }