0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-10 06:38:48 +00:00

28173 [Easy] Rochine Round 4

T123857: R44260916
This commit is contained in:
Baoshuo Ren 2020-12-26 18:38:25 +08:00 committed by Baoshuo Ren
parent 0b863a7ccf
commit d02a6c25a2
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

View File

@ -0,0 +1,10 @@
#include <bits/stdc++.h>
using namespace std;
int main() {
long long a;
cin >> a;
cout << 90ll - a << endl;
return 0;
}