#include <iostream> #include <stdlib.h> using namespace std; int main() { char s[50],aux; int i; cin.get(s,60); s[0]=s[0]-32; for(i=1;i<strlen(s)-1;i++) if(s[i]!=' ' && (s[i+1]==' ' || s[i-1]==' ')) s[i]=s[i]-32; s[strlen(s)-1]=s[strlen(s)-1]-32; cout<<s; system("PAUSE"); return 0; }