Run ID:124746

提交时间:2025-07-12 11:58:55

#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; }