#include<stdio.h>int main(){ char str[1001]={}; gets(&str[0]); int a,s; for(a=1;str[a] != NULL;a++) { s=str[a]+32; printf("%s",s) }