Skip to content

Commit f7e5c52

Browse files
committed
commit
1 parent d26b790 commit f7e5c52

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

1183A.cpp

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
#include<bits/stdc++.h>
2+
using namespace std;
3+
4+
5+
#define ll long long
6+
#define endl '\n'
7+
#define debug(n) cout<<(n)<<endl;
8+
const ll INF = 2e18 + 99;
9+
10+
int main(){
11+
ios_base::sync_with_stdio(false);
12+
cin.tie(NULL);
13+
14+
int a;
15+
cin>>a;
16+
17+
while(a % 4 != 0){
18+
a++;
19+
}
20+
21+
cout<<a<<endl;
22+
23+
}

0 commit comments

Comments
 (0)