#include <iostream>
using namespace std;
int main() {
// 好的变量名
int minutesPerHour = 60;
// 可以运行,但不容易理解 m 的实际含义
int m = 60;
cout << minutesPerHour << "\n";
cout << m;
return 0;
}