answer.code:4:1: error: ‘ll’ does not name a type
4 | ll gcd(ll a, ll b) {return b ? gcd(b, a % b) : a;}
| ^~
answer.code: In function ‘int main()’:
answer.code:7:9: error: ‘ll’ was not declared in this scope
7 | ll h, m, a;
| ^~
answer.code:8:32: error: ‘h’ was not declared in this scope
8 | scanf("%lld%lld%lld", &h, &m, &a);
| ^
answer.code:8:36: error: ‘m’ was not declared in this scope; did you mean ‘tm’?
8 | scanf("%lld%lld%lld", &h, &m, &a);
| ^
| tm
answer.code:8:40: error: ‘a’ was not declared in this scope
8 | scanf("%lld%lld%lld", &h, &m, &a);
| ^
answer.code:10:11: error: expected ‘;’ before ‘g’
10 | ll g = gcd(h - 1, h * m);
| ^~
| ;
answer.code:11:26: error: ‘g’ was not declared in this scope
11 | printf("%lld\n", g * (2 * (a / g) + 1));
| ^