CF99A.Help Far Away Kingdom

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

In a far away kingdom lived the King, the Prince, the Shoemaker, the Dressmaker and many other citizens. They lived happily until great trouble came into the Kingdom. The ACMers settled there.

Most damage those strange creatures inflicted upon the kingdom was that they loved high precision numbers. As a result, the Kingdom healers had already had three appointments with the merchants who were asked to sell, say, exactly 0.2735491070.273549107 beer barrels. To deal with the problem somehow, the King issued an order obliging rounding up all numbers to the closest integer to simplify calculations. Specifically, the order went like this:

  • If a number's integer part does not end with digit 99 and its fractional part is strictly less than 0.50.5 , then the rounded up number coincides with the number’s integer part.
  • If a number's integer part does not end with digit 99 and its fractional part is not less than 0.50.5 , the rounded up number is obtained if we add 11 to the last digit of the number’s integer part.
  • If the number’s integer part ends with digit 99 , to round up the numbers one should go to Vasilisa the Wise. In the whole Kingdom she is the only one who can perform the tricky operation of carrying into the next position.

Merchants found the algorithm very sophisticated and they asked you (the ACMers) to help them. Can you write a program that would perform the rounding according to the King’s order?

输入格式

The first line contains a single number to round up — the integer part (a non-empty set of decimal digits that do not start with 00 — with the exception of a case when the set consists of a single digit — in this case 0 can go first), then follows character «.» (a dot), and then follows the fractional part (any non-empty set of decimal digits). The number's length does not exceed 10001000 characters, including the dot. There are no other characters in the input data.

输出格式

If the last number of the integer part is not equal to 99 , print the rounded-up number without leading zeroes. Otherwise, print the message "GOTO Vasilisa." (without the quotes).

输入输出样例

  • 输入#1

    0.0
    

    输出#1

    0
  • 输入#2

    1.49
    

    输出#2

    1
  • 输入#3

    1.50
    

    输出#3

    2
  • 输入#4

    2.71828182845904523536
    

    输出#4

    3
  • 输入#5

    3.14159265358979323846
    

    输出#5

    3
  • 输入#6

    12345678901234567890.1
    

    输出#6

    12345678901234567890
  • 输入#7

    123456789123456789.999
    

    输出#7

    GOTO Vasilisa.
首页