diff options
| author | mjkwiatkowski <mati.rewa@gmail.com> | 2026-06-01 14:34:18 +0200 |
|---|---|---|
| committer | mjkwiatkowski <mati.rewa@gmail.com> | 2026-06-01 14:34:18 +0200 |
| commit | 7172d4f401f22192abc1e116a9a88c5078eb082f (patch) | |
| tree | 65b099c01ddea514a99ad68bd6306fed1a6f8b67 /50A | |
Diffstat (limited to '50A')
| -rwxr-xr-x | 50A/main | bin | 0 -> 16176 bytes | |||
| -rw-r--r-- | 50A/main.cpp | 15 |
2 files changed, 15 insertions, 0 deletions
diff --git a/50A/main b/50A/main Binary files differnew file mode 100755 index 0000000..ad31018 --- /dev/null +++ b/50A/main diff --git a/50A/main.cpp b/50A/main.cpp new file mode 100644 index 0000000..4e90b43 --- /dev/null +++ b/50A/main.cpp @@ -0,0 +1,15 @@ +#include <iostream> + +using namespace std; + +using namespace std; +int main(){ + int a,b; + cin>>a>>b; + int count = 0; + count += (b*a/2); + // 4.5 gets rounded to 4 + cout<<count; + + return 0; +} |
