Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

#include <iostream>

using namespace std;

int main()
{
int n;
cout<<"enter a number"<<endl;
cin>>n;
n=n%10;
cout<<"last digit of number is :"<< n <<endl;

n=n/10;
n=n%10;
cout<< "second last digit of number is :"<<n<<endl;
return 0;

You might also like