UVA458:

The Decoder

#include <iostream>;
#include <string>;

using namespace std;

int main(){
	string s; 

	while(cin >> s){
		
		for(int i = 0; i < s.length(); i++){
			s[i] -= 7;
		}

		cout << s << endl;

	}

	return 0; 
}
[Back to Listing Page]

Home

Posts

Projects

Github

Contact

janzzen

Developed by Janzzen Ang powered by Vercel