#include <iostream>
using namespace std;

int main() {
	float a = 2.25E2;
	float b = 2.5;
	float sum= a+b;
	cout<<sum;
	// your code goes here
	return 0;
}