fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. char ch;
  6. ch=getchar();
  7. ch=ch+32;
  8. putchar(ch);
  9. putchar('\n');
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 5316KB
stdin
A
stdout
a