за вопрос.
x = y + 5 * z
запишем это выражение на двух языках :
1) Python
y = int(input())
z = int(input())
print(x)
2) C++
#include <iostream>
using namespace std;
int main(){
int x,y,z;
cin >> y >> z;
x = y + 5 * z;
cout << x;
}
за вопрос.
x = y + 5 * z
запишем это выражение на двух языках :
1) Python
y = int(input())
z = int(input())
x = y + 5 * z
print(x)
2) C++
#include <iostream>
using namespace std;
int main(){
int x,y,z;
cin >> y >> z;
x = y + 5 * z;
cout << x;
}