fork download
  1. #include <bits/stdc++.h>
  2. #define ll long long
  3. using namespace std;
  4. int main()
  5. {
  6. int x, y;
  7. cin >> x >> y;
  8. cout << 5*x+y-11;
  9. return 0;
  10. }
Success #stdin #stdout 0s 5324KB
stdin
9
7
stdout
41