#31858: cpp ans


jasontw77661@gmail.com (Jason Chang)

學校 : 不指定學校
編號 : 171679
來源 : [140.113.136.219]
最後登入時間 :
2023-06-13 20:09:12

#include <iostream>
#include <string>

using namespace std;
int main(){
    string x;
    getline(cin, x);
    for(int i = 0; i < x.length();i++){
       char temp;
       temp = x[i];
       temp = temp - 7;
       cout << temp;
    }
}