Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
113878 胡海峰老师 02数字拼接 C Accepted 0 MS 200 KB 220 2025-03-16 19:29:08

Tests(10/10):


Code:

#include <stdio.h> int main(){ int a,b; // short integer 8Bits scanf("%d%d",&a,&b); long n; // long integer 16Bits n = a * 10 + b; n = n * n; printf("%ld",n); return 0; }