#include int main() { int num,output; scanf("%d",&num); output = num*num; printf("%dX%d=%d",num,num,output); return 0; }