// Arup Guha
// 3/18/02
// Short template example
#include <iostream.h>

template<class T>
void printing(T x) {

  cout << x << endl;
}

template<class S, class T>
void moreprinting(S x, T y) {
  cout << "S "<< x << endl;
  cout << "T " << y << endl;
}

void main() {

  printing(3);
  printing("hello");
  printing(3.45);
  moreprinting(4.53,'f');
}
