Run ID:93994

提交时间:2024-10-19 17:01:01

#include <stdio.h> #include <math.h> int main() { int a ; int b ,bb; scanf("%d%d",&a,&b); bb = b; int t = 0; while(b!=0) { b=b/10; t++; } int c; c = (int) a* pow(10,t) + bb; printf("%d",c*c); return 0; }