#include <stdio.h> #include <math.h> int main() { long a ; long b ,c; scanf("%ld%ld",&a,&b); c = a*10 + b; printf("%ld",c*c); //long return 0; }