//Printing characters based on numbers
  #include <iostream.h>
 int main()
 {
 for (int i = 32; i<128; i++)
 cout << (char) i;
 return 0;
 }