Problem A: 银行存款

Problem A: 银行存款

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MiB

Description

A在银行存了a元,到期后变成了b元。

输入ab010000的整数),请问存款的收益率是多少?

使用百分数的形式表示,精确到小数点后2


提示:

收益率 = (到期金额-初始金额)/存款本金*100%。

注意类型转换。

使用printf 输出 % ,需要写成 %%


#include<cstdio>
using namespace std;
int main() {
    int a, b;
    scanf("_________", __________);
    printf("_________", ___________________);
    return 0;
}

Sample Input Copy

100 105

Sample Output Copy

5.00%