You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include<iostream>
|
|
|
|
using namespace std;
|
|
|
|
int main() {
|
|
|
|
int a, b;
|
|
cin >> a >> b;
|
|
float c = 1.9;
|
|
float d = a + b * 0.1;
|
|
int e = d / c;
|
|
cout << e << endl;
|
|
return 0;
|
|
} |