View Code of Problem 54

#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
typedef long long ll;
int main(){
	char a[100];
	gets(a);
	int len=strlen(a);
	for(int i=0;i<len;i++){
		printf("%c ",a[i]);
	}
	return 0;
}

Double click to view unformatted code.


Back to problem 54