16 lines
211 B
C++
16 lines
211 B
C++
#include <iostream>
|
|
#include <cstdint>
|
|
|
|
int main() {
|
|
std::cout << "Enter two numbers: ";
|
|
|
|
uint32_t x, y;
|
|
|
|
std::cin >> x >> y;
|
|
|
|
std::cout << "got " << x << " and " << y << '\n';
|
|
|
|
return 0;
|
|
|
|
}
|