SVN / public / code / vorlesung-12 / Simple.cpp

Revision 8201
Date
Committerhb1003
Download
// Copyright 2026, University of Freiburg,
// Chair of Algorithms and Data Structures.
// Author: Hannah Bast <bast@cs.uni-freiburg.de>

// Main function.
int main() {
  int a = 33;
  int b = 9;
  int c = a + b;
  return c;
}