From 82a5b928a023ba0edbb60937d0a19b01fd636dae Mon Sep 17 00:00:00 2001 From: "Alice(KuzmenkoEA)" Date: Sun, 7 Apr 2024 23:25:20 +0300 Subject: [PATCH] code: add div --- main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.cpp b/main.cpp index 54b02ab..998961b 100644 --- a/main.cpp +++ b/main.cpp @@ -7,6 +7,6 @@ int main() cout << "Enter A and B"; int a, b; cin >> a >> b; - cout << "A * B = " << a * b << '\n'; + cout << "A / B = " << a / b << '\n'; return 0; }