foo
#include <bits/stdc++.h>
using namespace std;
// this is a foo code
// 示例代码
int f(int x) {
return x * 3;
}
// 80列线
// =============================================================================
int main() {
printf("Hello World\n");
int b = 1;
int a = 3 + b * 4 + f(b);
return 0;
}