-1
#include <iostream>
#include <string>
using namespace std;
template <class T> void sortArray(T items, int count) {
  T t;
  for (int a = 1; a < 5; a++) {
    for (int b = count - 1; b >= a; b--) {
      if (items[b - 1] > items[b]) {
        t = items[b - 1];
        items[b - 1] = items[b];
        items[b] = t;
      }
    }
  }
}
template <class T> void printArray(T items, int count) {
  T array[5];
  for (int i = 0; i < count; i++) {
    cout << array[i] << " ";
  }
}
int main() {
  int b[5];
  double d[5];
  char c[5];
  int i = 0;
  while (i < 5) {
    cin >> b[i];
    i++;
  }
  i = 0;
  while (i < 5) {
    cin >> d[i];
    i++;
  }
  i = 0;
  while (i < 5) {
    cin >> c[i];
    i++;
  }
  sortArray(b, 5);
  sortArray(d, 5);
  sortArray(c, 5);
  printArray(b, 5);
  printArray(d, 5);
  printArray(c, 5);
  return 0;
} 
4

1 に答える 1