View Code of Problem 3924

#include<bits/stdc++.h>
using namespace std;

int main(){
	string s;
	getline(cin,s);
	for(int i=0;i<s.length();i++){
		while(s[i]==s[i+1]){
			i++;
		}
		cout<<s[i];
	}
}

Double click to view unformatted code.


Back to problem 3924