View Code of Problem 43

#include <bits/stdc++.h>
using namespace std;
int main(){
	string s;
	cin>>s;
	for(int i=0;i<s.size();i++){
		if(isalpha(s[i])) cout<<s[i];
	}
} 

Double click to view unformatted code.


Back to problem 43