Tuesday 17 May 2011

458-The Decedor

#include<iostream>
#include<stdlib.h>
#include<stdio.h>
using namespace std;
int main()
{
    char ch;
    //freopen("in.txt","r",stdin);
    while(scanf("%c",&ch)==1)
        if(ch=='\n')
            cout<<endl;
        else
        printf("%c",ch-7);
    exit(0);
}

No comments:

Post a Comment