题解 | #你能活多少秒#
你能活多少秒
https://www.nowcoder.com/practice/e1d1bd99fee34b66ae3c777b74d555c8
#include <stdio.h> int main() { long long a, b=31560000; while (scanf("%lld", &a) != EOF) { // 注意 while 处理多个 case // 64 位输出请用 printf("%lld") to printf("%lld\n", a * b); } return 0; }