其他分享
首页 > 其他分享> > D Happy New Year!

D Happy New Year!

作者:互联网

题目

在这里插入图片描述

代码

#include<iostream>
#include<string>
#include<cmath>
#include<cstring>
#include<algorithm>
#include<vector>
#define BUFF ios::sync_with_stdio(false),cin.tie(0),cout.tie(0)
using namespace std;
const int MOD = 2333;
const int INF = 0x3f3f3f3f;
const int N = 1e5 + 5;
typedef long long ll;

int a[20];

void work() {
	int n; cin >> n;
	if (n == 2030) {
		cout << 2102 << '\n';
		return;
	}
	cout << n + 9 << '\n';
}

int main() {
	BUFF;
	int T = 1;
	while (T--)
		work();
	return 0;
}

标签:const,cout,int,long,tie,Year,New,include,Happy
来源: https://blog.csdn.net/sunhongxuan666/article/details/120583367