/*Q; Design a program that take a char value from the
user and display the ASCII value of the entered value?*/
#include<iostream>
using namespace std;
int main()
{
char a;
cin>>a;
int num=(int)a;
cout<<"
ASCII value of "<<a<<"="<<num;
return 0;
}