Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
94006 蔡胤泽 02数字拼接 C Accepted 1 MS 200 KB 147 2024-10-19 17:05:55

Tests(10/10):


Code:

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