Write a program that inputs a five-digit integer, separates the integer into its Individual
digits and prints the digits vertically. For example, if the user types 32156, the program
should print:
6
5
1
2
3
#include <iostream> // preprogressive directive
using namespace std; // Global Identifier
int main() // Main Function
{ // Entry point
int a,b,c,d,e;
cin>>a>>b>>c>>d>>e;
cout<<a<<endl<<b<<endl<<c<<endl<<d<<endl<<e;
return 0;
}