complete 27323 and aloha bfs(1260, 1697, 14940)

This commit is contained in:
2024-03-25 19:30:38 +09:00
parent 00bbedd83c
commit be0b5e12ba
4 changed files with 124 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
#include <iostream>
using namespace std;
int main() {
int A, B;
cin >> A >> B;
cout << A * B;
return 0;
}