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. printf("%c,%d\n",ch,ch);
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0.01s 5312KB
stdin
B
stdout
b,98