#include <stdio.h> #include <ctype.h> int main() { char temp; while((temp=getchar())!=EOF) { (temp == '\n') ? putchar(temp) : putchar(temp-7); } return 0; }
Post a Comment
No comments:
Post a Comment