#include <iostream>
using namespace std;
int main() {
int x, y, z;
x = y = z = 50;
cout << x + y + z;
return 0;
}