fork download
  1. #include<stdio.h>
  2. #include<math.h>
  3. int main()
  4. {
  5. int x;
  6. scanf("%d", &x);
  7. while(x--){
  8. int y;
  9. scanf("%d", &y);
  10. printf("%d\n", 100-y);
  11. }
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0.01s 5312KB
stdin
4
5
9
11
21
stdout
95
91
89
79