← Back to List

32025번: 체육은 수학과목 입니다 ↗

Solutions

C++14
175 B | 175 chars
#include <iostream>

using namespace std;

int main() {
  ios::sync_with_stdio(0);
  cin.tie(NULL);cout.tie(NULL);

  int a, b;

  cin >> a >> b;

  cout << min(a, b) * 50;

}