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