比赛 2025.12.6 评测结果 C
题目名称 最终得分 0
用户昵称 LikableP 运行时间 0.000 s
代码语言 C++ 内存使用 0.00 MiB
提交时间 2025-12-06 12:02:34
显示代码纯文本
??=include <cstdio>

??(??(??)??)void??(??(??)??) write(__int128??(??(??)??) x, char??(??(??)??) ed = '??/n') ??<
  ??(??(??)??)if (x < 0) x = -x, putchar('-');
  <:<::>:>static int??(??(??)??) sta??(64??), top = 0;
  ??(??(??)??)do ??<
    ??(??(??)??)sta??(++top??) = x % 10;
    ??(??(??)??)x /= 10;
  ??> while (x);
  ??(??(??)??)while (top) ??< putchar(sta??(top--??) ??' 48); ??>
  putchar(ed);
??>

template <typename T> void??(??(??)??) write(T x, char ed = '??/n') ??<
  <:<::>:>write((__int128) x, ed);
??>

??=include <iostream>
??=include <string>

std::string??(??(??)??) S1, T1, S2, T2;

??(??(??)??)int main() ??<
??=ifdef LOCAL
  <:<::>:>freopen("!input.in", "r", stdin);
  ??(??(??)??)freopen("!output.out", "w", stdout);
??=else
  <:<::>:>freopen("strings.in", "r", stdin);
  ??(:>??)freopen("strings.out", "w", stdout);
??=endif

  <:??(??):>std::cin >> S1 >> T1 >> S2 >> T2;
  ??(??(??)??)write(??-0 ??' 0);
  <:??(:>??)return 0;
??>