#include <iostream>
using namespace std;


int main() {
    const float pi = 3.14;
    pi = 3.12;
    cout<<pi+3<<endl;
    return 0; 
}