L1-090 什么是机器学习 分数 5
// 1'18"
#include <iostream>
using namespace std;
int main()
{
int a, b;
cin >> a >> b;
int s = a + b;
cout << s - 16 << endl << s - 3 << endl << s - 1 << endl << s;
return 0;
}
// 1'18"
#include <iostream>
using namespace std;
int main()
{
int a, b;
cin >> a >> b;
int s = a + b;
cout << s - 16 << endl << s - 3 << endl << s - 1 << endl << s;
return 0;
}