595 — AceptaelReto

Solución — 595


#include <bits/stdc++.h>
using namespace std;

int main(){
    int N; scanf("%d",&N);
    while(N--){
        int volume; scanf("%d",&volume);
        printf("%d\n",volume/100);
    }
    return 0;
}