fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. int a;
  6. scanf("%c",&a);
  7. if(a>='A'&&a<='z')
  8. printf("%c",a+=32);
  9. else
  10. printf("%c",a);
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 5312KB
stdin
k
stdout
k