Run ID:124740

提交时间:2025-07-12 11:57:30

#include<bits/stdc++.h> using namespace std; int main() { char c; c = getchar(); if(c-1>=32&&c-1<=126){ cout<<c-1<<endl; } else{ cout<<"Input Error"<<endl; } return 0; }