CodechefSep 17, 2025

Discount

Hazrat Ali

Codechef

Alice buys a toy with a selling price of 100 rupees. There is a discount of x percent on the toy. Find the amount Alice needs to pay for it.

Input Format

  • The first line of input will contain a single integer T, denoting the number of test cases.
  • The first and only line of each test case contains a single integer, x — the discount on the toy.

Output Format

For each test case, output on a new line the price that Alice needs to pay.

Constraints

  • 1≤T≤100
  • 0≤x<100

Sample 1:

Input
4
5
9
11
21
Output 
 
95
91
89
79

Solution

#include <iostream>
using namespace std;

int main() {
    int t;
    cout << "";
    cin >> t;

    for (int i = 0; i < t; i++) {
        int x;
        cout << "";
        cin >> x;
        cout << 100 - x << endl;
    }

    return 0;
}


Comments