#include <iostream>
using namespace std;

int main() {
    int total = 300;
    int protein = 45;
    
    double percent = (double)protein / total * 100;
    
    cout << percent << "%" << endl;
    
    return 0;
}