#include int main(void){ double a,b; scanf("%lf",&a); printf("%.0lf\n",a*a); scanf("%lf %lf",&a,&b); printf("%.0lf\n",a*b); return 0; }