#C6817. Celsius to Kelvin Conversion

    ID: 50619 Type: Default 1000ms 256MiB

Celsius to Kelvin Conversion

Celsius to Kelvin Conversion

This problem requires you to convert a given temperature from Celsius to Kelvin. The conversion is based on the formula:

\( K = C + 273.15 \)

You need to read a single floating-point number from standard input, apply the conversion, and print the result to standard output. The output must be formatted as a floating-point number with exactly two digits after the decimal point.

inputFormat

The input consists of one line containing a single floating-point number representing the temperature in degrees Celsius. The input is given via stdin.

outputFormat

Output a single floating-point number representing the temperature in Kelvin, formatted with exactly two digits after the decimal point. The output should be printed to stdout.

## sample
25
298.15