From 9700547c928bd784888cb4f226856a99b2a440ef Mon Sep 17 00:00:00 2001 From: Breachico Date: Wed, 28 Jan 2026 11:37:16 -0800 Subject: [PATCH] User input integers now explicitly typed int32_t. Resolves #340. --- main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.cpp b/main.cpp index a495fc94..9836bbf2 100644 --- a/main.cpp +++ b/main.cpp @@ -6,7 +6,7 @@ int main() std::cout << "THE FIRST EXAMPLE MATH DISPLAY!\n"; std::cout << "Hi, please enter two whole numbers: "; - int x,y; + int32_t x,y; std::cin >> x >> y; std::cout << "Addition: " << x + y << std::endl;