Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main(){
- char c[4];
- for(int i = 0; i < 4; i++) {
- cin >> c[i];
- }
- int najmala_suma = 0;
- int najgolema_suma = 0;
- for(int i = 0; i < 4; i++) {
- if(isdigit(c[i])) {
- najmala_suma += (c[i] - '0');
- najgolema_suma += (c[i] - '0');
- }
- else if(c[i] == 'P') {
- najmala_suma += 1;
- najgolema_suma += 1;
- }
- else if(c[i] == 'R') {
- najmala_suma += 2;
- najgolema_suma += 5;
- }
- }
- cout << najmala_suma << " " << najgolema_suma << endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment