#include<iostream>

using namespace std;
int main(){
   
    //x = 6 Make a note inside a program
    //y = 4
    //x  + y = 10
    /*
     This is a multiline
     comment
     */
    
    
    float numberOfStudents = 6;
    float classSize = 31;
    
    float percentInvolved = (numberOfStudents/classSize)*100; // Camelback Notation
    
    cout << "The percentage of students involved in this fight was: " << percentInvolved << "%"<<endl;
    
    
    
    return 0;
}