#31179: ___C


oh_my_god (often)

學校 : 臺中市私立明道高級中學
編號 : 196962
來源 : [36.232.167.246]
最後登入時間 :
2025-09-20 18:38:30

#include <stdio.h>
int main()
{
    char pen[10000];
    fgets(pen,10000,stdin);
    for(int i=0;pen[i] !='\0';i++)
    {
        printf("%c",pen[i]-7);
    }
    return 0;
}