| 41 | } |
| 42 | |
| 43 | int main(){ |
| 44 | ofstream fout(getenv("OUTPUT_PATH")); |
| 45 | |
| 46 | string a; |
| 47 | getline(cin, a); |
| 48 | |
| 49 | string b; |
| 50 | getline(cin, b); |
| 51 | |
| 52 | int res = makeAnagram(a, b); |
| 53 | |
| 54 | fout << res << "\n"; |
| 55 | |
| 56 | fout.close(); |
| 57 | |
| 58 | return 0; |
| 59 | } |
nothing calls this directly
no test coverage detected