c_code/2024-7-10-1.cpp

12 lines
146 B
C++
Raw Normal View History

#include<iostream>
using namespace std;
int main(){
int nb= 880,dx= 500;
int zc= nb*2+dx*2;
int mj= nb*dx;
cout<<nb<<" "<<mj;
return 0;
}