#include <stdio.h> int main() { int c; while(1) { c=getchar(); if(c==EOF) break; if(c>90) putchar(c-32); else putchar(c+32); } return 0; }
To embed this project on your website, copy the following code and paste it into your website's HTML: