A. Happy New Year 2025
模拟
代码实现
a, b = map(int, input().split())
print((a+b)**2)
B. 9x9 Sum
模拟
代码实现
#include <bits/stdc++.h>
#define rep1(i, n) for (int i = 1; i <= (n); ++i)
using namespace std;
int main() {
int x;
cin >> x;
int ans = 0;
rep1(i, 9)rep1(j, 9) {
if (i*j != x) ans += i*j;
}
cout << ans << '\n';
return 0;
}